Symfony 2形成额外的字段

时间:2012-01-31 11:29:49

标签: php forms symfony sonata-admin

我通过AJAX更改了一些字段,当我尝试保存表单时,我发现错误Extra fields are not allowed

如何在sf1.4中更改validatorPass()之类的验证器属性?
或者可能改变形式以接受额外的字段?

我使用SonataAdminBundle创建表单。

3 个答案:

答案 0 :(得分:20)

您可以在将请求数据绑定到表单之前删除请求数据中的额外字段:

    // The JSON PUT data will include all attributes in the entity, even
    // those that are not updateable by the user and are not in the form.
    // We need to remove these extra fields or we will get a
    // "This form should not contain extra fields" Form Error
    $data = $request->request->all();
    $children = $form->all();
    $data = array_intersect_key($data, $children);
    $form->bind($data);

答案 1 :(得分:1)

在我的情况下,解决方案非常简单,只需将allow_add添加到您的收集字段, 在我的例子下面

        ->add('Details', 'collection', array(
            'type' => new DetailsType(),
            'allow_add' => true,
            'allow_delete' => true,
            'label' => ' '
        ))

您还可以查看此问题的官方文档 http://symfony.com/doc/current/cookbook/form/form_collections.html

您需要做的第一件事是让表单集合知道它将收到未知数​​量的标签。到目前为止,您已添加了两个标记,并且表单类型期望接收两个标记,否则将抛出错误:此表单不应包含额外字段。要使其灵活,请将allow_add选项添加到集合字段中。

答案 2 :(得分:0)

您无法添加额外字段,因为它们未声明为实体。有一种解决方案可以绕过您的问题:

  • 创建一个动态表单,您可以在其中添加额外的字段。

你有一个关于如何在github上工作的例子: https://github.com/Keirua/KeiruaProdCustomerDemoBundle

以及此地址的完整教程(但是用法语):

http://blog.keiruaprod.fr/2012/01/18/formulaires-dynamiques-avec-symfony2/

PS:似乎Sonata使用这种方式添加字段。