这是一个我一直在讨厌的问题。 请知道我还不是Symfony2专家,所以我可能在某个地方犯了一个菜鸟错误。
Field1:标准Symfony2 text
字段类型
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()
)
));
的src /我/分量/窗体/类型/ 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 /我/分量/窗体/ 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 /我/ ComponentBundle /资源/配置/ services.yml
parameters:
services:
my_component.form.type.textWithAutoValue:
class: My\Component\Form\Type\TextWithAutoValueType
tags:
- { name: form.type, alias: textWithAutoValue }
的src /我/ ComponentBundle /资源/视图/窗体/ 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几个小时,无法弄清楚如何复制,绑定或引用构建此表单时添加的原始约束。
- &GT;有谁知道如何做到这一点?
- &GT;奖励积分;如何启用已添加到主窗体绑定实体的约束? (通过实体类的注释)
PS
对不起它成了这么长的问题,我希望我成功地解决了我的问题。如果没有,请向我询问更多详情!
答案 0 :(得分:12)
我建议您先阅读documentation about validation。
我们可以做到的是验证主要发生在类而不是表单类型上。那是你忽略的。你需要做的是:
<强> validation.yml 强>:
src/My/Bundle/Form/Model/TextWithAutoValue:
properties:
text:
- Type:
type: string
- NotBlank: ~
checkbox:
- Type:
type: boolean
修改强>
我假设您已经知道如何在另一个表单中使用表单类型。定义验证配置时,您可以使用一个非常有用的东西,称为validation groups。这是一个基本的例子(在 validation.yml 文件中,因为我不太熟悉验证注释):
src/My/Bundle/Form/Model/TextWithAutoValue:
properties:
text:
- Type:
type: string
groups: [ Default, Create, Edit ]
- NotBlank:
groups: [ Edit ]
checkbox:
- Type:
type: boolean
可以将组参数添加到每个约束中。它是一个包含验证组名称的数组。请求对对象进行验证时,您可以指定要验证的组集。然后,系统将在验证文件中查找应该应用的约束。
默认情况下,在所有约束上设置“默认”组。这也是执行常规验证时使用的组。
当然,这是所有表单类型选项的标准行为。一个例子:
$formBuilder->add('auto_text', 'textWithAutoValue', array(
'label' => 'my_label',
'validation_groups' => array('Default', 'Edit'),
));
至于使用不同的实体,您可以使用与堆积形式相同的架构来堆积数据类。在上面的示例中,使用 textWithAutoValueType 的表单类型必须具有data_class,该data_class具有'auto_text'属性和相应的getter / setter。
在验证文件中,有效约束将能够级联验证。 有效的属性将检测属性的类,并将尝试为此类查找相应的验证配置,并将其应用于相同的验证组:
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
答案 1 :(得分:2)
如Bernhard Schussek所述https://speakerdeck.com/bschussek/3-steps-to-symfony2-form-mastery#39(幻灯片39)(symofny表格扩展的主要贡献者),变换器不应该改变信息,只改变其表示。
添加信息(复选框'=&gt; true),你做错了什么。
在 编辑:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('value', 'text', $options);
$builder->add('checkbox', 'checkbox', array('mapped'=>false));
$builder->addModelTransformer(
new TextWithAutoValueTransformer()
);
}