我的方案如下:
如果用户从“maxRedemptionForDiscount”中选择“true”并在“maxRedemptionForDiscountValue”中键入“0”,则应该有一条错误消息呈现给特定字段(位于TextType字段的位置)
这是带有eventListener的表单:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'maxRedemptionForDiscount',
ChoiceType::class,
[
'placeholder' => false,
'multiple' => false,
'choices' => [
true => 'discount.form_fields.set_max_redemptions',
false => 'discount.form_fields.unlimited',
],
'label' => 'discount.form_fields.max_redemption_for_discount',
'translation_domain' => 'entities',
'required' => false,
'error_bubbling' => true,
'attr' => [
'class' => 'maxRedemptionForDiscountSelect',
],
]
)->add(
'maxRedemptionForDiscountValue',
TextType::class,
[
'label' => 'discount.form_fields.set_max_redemptions',
'translation_domain' => 'entities',
'required' => false,
]
)->addEventListener(
FormEvents::PRE_SUBMIT,
[$this, 'onPreSubmit']
);
}
这是onPreSubmit函数:
/**
* @param FormEvent $event
*/
public function onPreSubmit(FormEvent $event)
{
$data = $event->getData();
$form = $event->getForm();
if ($data['maxRedemptionForDiscount'] == 1) {
if ($data['maxRedemptionForDiscountValue'] == 0) {
$form->addError(new FormError('error message'));
}
}
$event->setData($data);
}
这是树枝代码:
{{ form_row(form.maxRedemptionForDiscount) }}
<div id="maxRedemptionForDiscountValue">
{{ form_row(form.maxRedemptionForDiscountValue) }}
</div>
这会在表单上方呈现错误消息。 但我希望我将错误信息呈现给特定字段。
这不起作用:
$form->get('maxRedemptionForDiscountValue')->addError(new FormError('error message'));
如果我尝试此操作,错误消息将在表单顶部消失,但不会显示在特定的字段位置。
我在这里做错了什么?
答案 0 :(得分:1)
首先,您应该将error_bubbling
设置为false
(或将其删除,因为它的默认行为)。
正如文件所述
如果为true,则此字段的任何错误都将传递给父字段或表单。例如,如果在普通字段上设置为true,则该字段的任何错误都将附加到主窗体,而不是特定字段。
特别是ChoiceType
设置此字段上的错误必须附加到字段而不是父字段(大多数情况下是表单)。
其次,您应该将错误添加到特定表单字段
$form
->get('maxRedemptionForDiscountValue')
->addError(new FormError('error message'));
第三,您应该编辑模板
<div id="maxRedemptionForDiscountValue">
{{ form_errors(form.maxRedemptionForDiscountValue) }}
{{ form_row(form.maxRedemptionForDiscountValue) }}
</div>