Symfony2:使用ajax和验证更改选择
场景:我有一个包含 2 个选项的表单。当用户从第一个选择中选择某些内容时,第二个选择将填充新值。这部分工作正常。
但是表单不会得到验证,因为它包含一些初始表单中不允许的选项。
形式:
<?php
class MyType extends AbstractType
{
private $category;
public function __construct($category = null)
{
$this->category = $category;
}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('category', 'choice', array(
'choices' => array(
'foo' => 'foo',
'bar' => 'bar'
)
);
$builder->add('template', 'choice', array(
'choices' => $this->loadChoices()
);
}
private function loadChoices()
{
// load them from DB depending on the $this->category
}
}
最初,该类别为 。因此,foo的模板被加载并设置为选项。但是,如果用户选择 ,则将加载条形模板。但是表单仍然有foo选择,并且没有验证。foo
bar
解决这个问题的最佳方法是什么?
我发现的一种方法是在控制器中重新启动表单:
<?php
$form = $this->createForm(new MyType());
if ($request->getMethod() === 'POST') {
if ($request->request->has($form->getName())
&& isset($request->request->get($form->getName())['category'])) {
$form = $this->createForm(new MyType($request->request->get($form->getName())['category']));
}
// ...
}
这有效,但我无法测试它,因为它在设置值时会抛出,并且只是假设默认值。有没有更好的解决方案?提前致谢!IllegalArgumentException