19

我的表单中有一个名为 *sub_choice* 的选项字段类型,其选项将通过 AJAX 动态加载,具体取决于名为 *parent_choice* 的父选项字段的选定值。加载选项非常有效,但在提交时验证 sub_choice 的值时遇到问题。它给出了“此值无效”验证错误,因为提交的值在构建时不在 sub_choice 字段的选择中。那么有没有办法可以正确验证 sub_choice 字段的提交值?下面是构建我的表单的代码。我正在使用 Symfony 2.1。

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('parent_choice', 'entity', array(
                    'label' => 'Parent Choice',
                    'class' => 'Acme\TestBundle\Entity\ParentChoice'
    ));

    $builder->add('sub_choice', 'choice', array(
                    'label' => 'Sub Choice',
                    'choices' => array(),
                    'virtual' => true
    ));
}
4

5 回答 5

24

要做到这一点,您需要sub_choice在提交表单之前覆盖该字段:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    ...

    $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
        $parentChoice = $event->getData();
        $subChoices = $this->getValidChoicesFor($parentChoice);

        $event->getForm()->add('sub_choice', 'choice', [
            'label'   => 'Sub Choice',
            'choices' => $subChoices,
        ]);
    });
}
于 2014-04-16T09:34:47.743 回答
3

这接受任何值

 $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
    $data = $event->getData();
    if(is_array($data['tags']))$data=array_flip($data['tags']);
    else $data = array();
    $event->getForm()->add('tags', 'tag', [
        'label'   => 'Sub Choice',
        'choices' => $data,
        'mapped'=>false,
        'required'=>false,
        'multiple'=>true,
    ]);
});
于 2015-01-31T07:57:55.843 回答
0

为未来的读者添加一种替代方法,因为我必须进行大量调查才能使我的表单正常工作。这是细分:

  1. 通过 jquery 向下拉列表中添加“新建”选项
  2. 如果选择“新建”,则显示新表单字段“自定义选项”
  3. 提交表格
  4. 验证数据
  5. 保存到数据库

树枝的jQuery代码:

$(function(){
    $(document).ready(function() {
        $("[name*='[custom_option]']").parent().parent().hide(); // hide on load

        $("[name*='[options]']").append('<option value="new">New</option>'); // add "New" option
        $("[name*='[options]']").trigger("chosen:updated");
    });

    $("[name*='[options]']").change(function() {
        var companyGroup = $("[name*='[options]']").val();

        if (companyGroup == 'new') { // when new option is selected display text box to enter custom option
            $("[name*='[custom_option]']").parent().parent().show();
        } else {
            $("[name*='[custom_option]']").parent().parent().hide();
        }
    });
});

// Here's my Symfony 2.6 form code:
    ->add('options', 'entity', [
    'class'         => 'Acme\TestBundle\Entity\Options',
    'property'      => 'display',
    'empty_value'   => 'Select an Option',
    'mapped'        => true,
    'property_path' => 'options.optionGroup',
    'required' => true,
])
->add('custom_option', 'text', [
    'required' => false,
    'mapped'   => false,
])

要处理表单数据,我们需要使用 PRE_SUBMIT 表单事件。

    $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
    $data = $event->getData();
    $form = $event->getForm();
    if (isset($data['options']) && $data['options'] === 'new') {
        $customOption = $data['custom_option'];

        // todo: handle this better on your own
        if (empty($customOption)) {
            $form->addError(new FormError('Please provide a custom option'));
            return;
        }

        // Check for a duplicate option
        $matches = $this->doctrine->getRepository('Acme\TestBundle\Entity\Options')->matchByName([$customOption]);
        if (count($matches) > 0) {
            $form->addError(new FormError('Duplicate option found'));
            return;
        }

        // More validation can be added here

        // Creates new option in DB
        $newOption = $this->optionsService->createOption($customOption); // return object after persist and flush in service
        $data['options'] = $newOption->getOptionId();
        $event->setData($data);
    }
});

如果您有任何问题或疑虑,请告诉我。我知道这可能不是最好的解决方案,但它确实有效。谢谢!

于 2018-12-18T18:11:43.293 回答
-3

您不能不构建 sub_choice 验证,因为在配置其验证器期间您不知道哪些值是有效的(值取决于 parent_choice 的值)。

您可以做的是在您的控制器中创建 new YourFormType() 之前将 parent_choice 解析为实体。然后,您可以获得 sub_choice 的所有可能值,并通过表单构造函数提供它们 - new YourFormType($subChoice)。

在 YourFormType 中,您必须添加 __construct 方法,如下所示:

/**
 * @var array
 */
protected $subChoice = array();

public function __construct(array $subChoice)
{
    $this->subChoice = $subChoice;
}

并使用表单中提供的值添加:

$builder->add('sub_choice', 'choice', array(
                'label' => 'Sub Choice',
                'choices' => $this->subChoice,
                'virtual' => true
));
于 2013-08-14T10:52:06.140 回答
-6

假设你有 id 的权利的子选择?创建并清空具有一定数量值的数组并将其作为选择

$indexedArray = []; for ($i=0; $i<999; $i++){ $indexedArray[$i]= ''; }

然后'choices' => $indexedArray,:)

于 2013-04-18T14:12:57.807 回答