16

这是我一段时间以来一直在思考的一个问题。请知道我不是 Symfony2 专家(还),所以我可能在某个地方犯了一个新手错误。

Field1:标准 Symfony2text字段类型

Field2:自定义字段类型compound字段,text字段+checkbox字段)

预览

我的目标:将约束添加到该autoValue领域以处理autoValue's text input child

约束不起作用的原因可能是因为NotBlank需要一个字符串值,而这个表单字段的内部数据是一个数组array('input'=>'value', 'checkbox' => true)。这个数组值被转换回一个带有自定义的字符串DataTransformer。然而,我怀疑这是在针对已知约束验证字段之后发生的。

正如您在下面的注释代码中看到的那样,我已经能够获得对文本输入起作用的约束,但是只有在硬编码到 autoValue 的表单类型中并且我想针对主字段的约束进行验证时。

我的(简化的)控制器和字段示例代码:

.

控制器代码

设置用于测试目的的快速表单。

<?php
//...
// $entityInstance holds an entity that has it's own constraints 
// that have been added via annotations

$formBuilder = $this->createFormBuilder( $entityInstance, array(
    'attr' => array(
        // added to disable html5 validation
        'novalidate' => 'novalidate'
    )
));

$formBuilder->add('regular_text', 'text', array(
    'constraints' => array(
        new \Symfony\Component\Validator\Constraints\NotBlank()
    )
));

$formBuilder->add('auto_text', 'textWithAutoValue', array(
    'constraints' => array(
        new \Symfony\Component\Validator\Constraints\NotBlank()
    )
));

.

TextWithAutoValue 源文件

src/My/Component/Form/Type/TextWithAutoValueType.php

<?php

namespace My\Component\Form\Type;

use My\Component\Form\DataTransformer\TextWithAutoValueTransformer;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class TextWithAutoValueType extends AbstractType
{
    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('value', 'text', array(
            // when I uncomment this, the NotBlank constraint works. I just
            // want to validate against whatever constraints are added to the
            // main form field 'auto_text' instead of hardcoding them here
            // 'constraints' => array(
            //     new \Symfony\Component\Validator\Constraints\NotBlank()
            // )
        ));

        $builder->add('checkbox', 'checkbox', array(
        ));

        $builder->addModelTransformer(
            new TextWithAutoValueTransformer()
        );
    }

    public function getName()
    {
        return 'textWithAutoValue';
    }
}

src/My/Component/Form/DataTransformer/TextWithAutoValueType.php

<?php

namespace My\Component\Form\DataTransformer;

use Symfony\Component\Form\DataTransformerInterface;

class TextWithAutoValueTransformer 
    implements DataTransformerInterface
{
    /**
     * @inheritdoc
     */
    public function transform($value)
    {
        return array(
            'value'    => (string) $value,
            'checkbox' => true
        );
    }

    /**
     * @inheritdoc
     */
    public function reverseTransform($value)
    {
        return $value['value'];
    }
}

src/My/ComponentBundle/Resources/config/services.yml

parameters:

services:
    my_component.form.type.textWithAutoValue:
        class: My\Component\Form\Type\TextWithAutoValueType
        tags:
            - { name: form.type, alias: textWithAutoValue }

src/My/ComponentBundle/Resources/views/Form/fields.html.twig

{% block textWithAutoValue_widget %}
    {% spaceless %}

    {{ form_widget(form.value) }}
    {{ form_widget(form.checkbox) }}
    <label for="{{ form.checkbox.vars.id}}">use default value</label>

    {% endspaceless %}
{% endblock %}

.

问题

我已经阅读 docs 和 google 好几个小时了,不知道如何复制、绑定或引用在构建此表单时添加的原始约束。

-> 有谁知道如何做到这一点?

-> 对于奖励积分;如何启用已添加到主窗体绑定实体的约束?(通过实体类上的注释)

附言

抱歉,问题变得这么长,我希望我成功地把我的问题弄清楚了。如果没有,请向我询问更多详细信息!

4

2 回答 2

13

我建议您先再次阅读有关验证的文档

我们可以从中得出的结论是,验证主要发生在类而不是表单类型上。那是你忽略的。你需要做的是:

  • 为您的TextWithAutoValueType创建一个数据类,例如称为src/My/Bundle/Form/Model/TextWithAutoValue它必须包含名为textcheckbox的属性以及它们的 setter/getter;
  • 将此数据类与您的表单类型相关联。为此,您必须创建一个TextWithAutoValueType::getDefaultOptions()方法并填充data_class选项。转到此处以获取有关此方法的更多信息;
  • 为您的数据类创建验证。您可以为此使用注释或Resources/config/validation.yml文件。不必将约束与表单的字段相关联,而必须将它们与类的属性相关联:

验证.yml

src/My/Bundle/Form/Model/TextWithAutoValue:
    properties:
        text:
            - Type:
                type: string
            - NotBlank: ~
        checkbox:
            - Type:
                type: boolean

编辑:

我假设您已经知道如何在另一个表单类型中使用。在定义验证配置时,您可以使用一个非常有用的东西,称为验证组。这是一个基本示例(在validation.yml文件中,因为我不太精通验证注释):

src/My/Bundle/Form/Model/TextWithAutoValue:
    properties:
        text:
            - Type:
                type: string
                groups: [ Default, Create, Edit ]
            - NotBlank:
                groups: [ Edit ]
        checkbox:
            - Type:
                type: boolean

有一个可以添加到每个约束的组参数。它是一个包含验证组名称的数组。请求对对象进行验证时,您可以指定要验证的组集。然后系统将在验证文件中查看应该应用哪些约束。

默认情况下,“默认”组设置在所有约束上。这也是执行常规验证时使用的组。

  • 您可以通过设置validation_groups参数(字符串数组 - 验证组的名称)在MyFormType::getDefaultOptions()中指定特定表单类型的默认组,
  • 将表单类型附加到另一个时,在MyFormType::buildForm()中,您可以使用特定的验证组。

当然,这是所有表单类型选项的标准行为。一个例子:

$formBuilder->add('auto_text', 'textWithAutoValue', array(
    'label' => 'my_label',
    'validation_groups' => array('Default', 'Edit'),
));

至于不同实体的使用,您可以按照与堆积形式相同的体系结构堆积数据类。在上面的示例中,使用textWithAutoValueType的表单类型必须有一个 data_class,它具有“auto_text”属性和相应的 getter/setter。

在验证文件中,Valid约束将能够级联验证。具有Valid的属性将检测属性的类,并尝试为该类找到相应的验证配置,并将其应用于相同的验证组:

src/My/Bundle/Form/Model/ContainerDataClass:
    properties:
        auto_text:
            Valid: ~ # Will call the validation conf just below with the same groups

src/My/Bundle/Form/Model/TextWithAutoValue:
    properties:
        ... etc
于 2014-02-03T09:47:40.340 回答
2

正如本文所述 https://speakerdeck.com/bschussek/3-steps-to-symfony2-form-mastery#39 (slide 39) by Bernhard Schussek(symofny 表单扩展的主要贡献者),变压器不应该改变信息,但只改变它的表示。

添加信息(复选框'=> true),你做错了什么。

在编辑中:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('value', 'text', $options);

    $builder->add('checkbox', 'checkbox', array('mapped'=>false));

    $builder->addModelTransformer(
        new TextWithAutoValueTransformer()
    );
}
于 2014-02-03T11:15:37.470 回答