使用Symfony2.3.4
正如标题所解释的那样,我需要将错误消息绑定到嵌入的表单字段,最好是在控制器中。我的想法可能类似于我用单一形式做的事情:
use Symfony\Component\Form\FormError;
//....
public function createAction(){
//.....
$postData = current($request->request->all());
if ($postData['field_name'] == '') {
$error = new FormError("Write some stuff in here");
$form->get('field_name')->addError($error);
}
//.....
}
或者可能必须以不同的方式完成,无论哪种方式我需要帮助,
感谢$
答案 0 :(得分:1)
我看到,当表单字段不包含任何值时,您正在尝试显示消息。您可以在表单类中轻松完成此操作,如下所示:
buildForm(FormBuilderInterface $builder, array $options) {
$builder->add('field_name', 'text', array(
'label' => 'Field label',
'required' => true,
'constraints' => array(
new NotBlank(array('message' => 'Write some stuff in here.'))
),
));
}
如果您需要向表单注入一些不属于Symfony2框架的其他类型的约束,您可以create your own validation constraint。
如果要在控制器中为表单添加一些选项,可以通过设置自己的选项在创建表单的方法中完成:
class YourController {
public function createForm(YourEntity $yourEntity){
$form = $this->createForm(new YourFormType(), $yourFormType, array(
'action' => $this->generateUrl('your_action_name',
array('your_custom_option_key' => 'Your custom option value')),
'method' => 'POST',
));
return $form;
}
// Rest of code omitted.
}
之后,您需要在表单类的setDefaultOptions(OptionsResolverInterface $resolver)
方法中添加一个选项,如下所示:
public function setDefaultOptions(OptionsResolverInterface $resolver){
$resolver->setDefaults(array(
'your_custom_option_key' => '',
));
}
然后使用buildForm(FormBuilderInterface $builder, array $options)
方法访问它,如下所示:
buildForm(FormBuilderInterface $builder, array $options) {
$options['your_custom_option_key']; // Access content of your option
// The rest of code omitted.
}