我在试图与 Symfony2 的表单构建器、事件和变形金刚搏斗时陷入困境……希望这里有人更有经验,可以提供帮助!
我有一个表单字段(选择下拉菜单),其中包含一些映射到实体的值(候选列表)。这些选项之一是“其他”。假设现在没有 AJAX,当用户提交表单时,我想检测他们是否选择了“其他”(或不在候选名单中的任何其他选项)。如果他们选择了其中一个选项,则应显示完整的选项列表,否则仅显示候选名单。应该很容易吧?;)
所以,我有我的表单类型,它可以很好地显示基本的候选名单。代码看起来像这样:
namespace Company\ProjectBundle\Form\Type;
use ...
class FancyFormType extends AbstractType {
private $fooRepo;
public function __construct(EntityManager $em, FooRepository $fooRepo)
{
$this->fooRepo = $fooRepo;
}
public function buildForm(FormBuilderInterface $builder, array $options) {
/** @var Bar $bar */
$bar = $builder->getData();
$fooTransformer = new FooToStringTransformer($options['em']);
$builder
->add($builder
->create('linkedFoo', 'choice', array(
'choices' => $this->fooRepo->getListAsArray(
$bar->getLinkedfoo()->getId()
),
))
->addModelTransformer($fooTransformer)
)
;
// ...
}
// ...
}
现在,我想检查提交的值,所以我使用了一个表单事件监听器,如下所示。
public function buildForm(FormBuilderInterface $builder, array $options) {
// ... This code comes just after the snippet shown above
$builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) {
/** @var EntityManager $em */
$em = $event->getForm()->getConfig()->getOption('em');
$data = $event->getData();
if (empty($data['linkedFoo'])) return;
$selectedFoo = $data['linkedfoo'];
$event->getForm()->add('linkedFoo', 'choice', array(
'choices' => $em
->getRepository('CompanyProjectBundle:FooShortlist')
->getListAsArray($selectedFoo)
,
));
//@todo - needs transformer?
});
}
但是,它失败并显示如下错误消息:
Notice: Object of class Proxies\__CG__\Company\ProjectBundle\Entity\Foo could not be converted to int in \path\to\project\symfony\symfony\src\Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceList.php line 458
我认为这个错误是因为当linkedFoo
被覆盖时它删除了modelTransformer
?我尝试了各种在事件关闭时访问构建器的方法,但这似乎不起作用(返回值出乎意料)。除了事件之外,我还应该使用其他方法$event->getForm()->add()
吗?或者我的方法是否存在更根本的问题?
基本上我不想弄乱该linkedFoo
字段的配置/变压器/标签,除了更改可用的选择......还有其他方法吗?例如类似的东西$form->getField()->updateChoices()
?
提前感谢您提供的任何帮助!
C
PS 有没有比 Symfony 网站上更好的形式、事件等的文档或讨论?例如,PRE_SET_DATA、PRE_SUBMIT、SUBMIT 等有什么区别?他们什么时候被解雇?它们应该用来做什么?继承如何与自定义表单字段一起工作?什么是 Form 和 Builder,它们如何交互以及何时应该处理它们?您应该如何、何时以及为什么使用您可以访问的 FormFactory $form->getConfig()->getFormFactory()
?ETC..
编辑:为了回应弗洛里安的建议,这里有一些关于尝试但不起作用的事情的更多信息:
如果您尝试在这样的事件中获取 FormBuilder:
/** @var FormBuilder $builder */
$builder = $event->getForm()->get('linkedFoo')->getConfig();
$event->getForm()->add($builder
->create('linkedFoo', 'choice', array(
'choices' => $newChoices,
'label' =>'label',
))
->addModelTransformer(new FooToStringTransformer($em))
);
然后你得到错误:
FormBuilder methods cannot be accessed anymore once the builder is turned
into a FormConfigInterface instance.
那么你尝试像弗洛里安建议的那样,即
$event->getForm()->add('linkedFoo', 'choice', array(
'choices' => $newChoices,
));
$event->getForm()->get('linkedFoo')->getConfig()->addModelTransformer(new FooToStringTransformer($em));
...但是您会收到此错误:
Notice: Object of class Proxies\__CG__\Company\ProjectBundle\Entity\Foo could not be converted to int
in C:\path\to\vendor\symfony\symfony\src\Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceList.php line 458
这似乎表明第二行(添加了 ModelTransformer)永远不会被调用,因为->add()
在你到达那里之前调用就失败了。