我目前正在用 symfony 表单做这种事情
$this->myForm = new MyForm();
$this->myForm->customConfigureMethod($this->getUser()->getGuardUser());
因为我需要根据用户配置一个 DoctriineChoice 小部件。
我宁愿做这种事情
$this->myForm =new myCustomConfiguredForm($this->getUser()->getGuardUser());
自定义是表单实例化的一部分。
有谁知道我怎么能做到这一点?我想我可能对表单的 configure() 和 setup() 函数之间的区别有点不清楚,所以无法清楚地思考它。