当表单选择字段取决于域对象属性的值时该怎么办

发布于 2024-11-17 15:59:22 字数 155 浏览 0 评论 0原文

当表单选择字段依赖于属性时我该怎么办 域对象。我有应该包含保险的保险字段 特定用户的。

http://pastie.org/2132730

提前致谢

What should I do when a form choice field depends on property of
domain object. I have insurance field that should contain insurances
of specific user.

http://pastie.org/2132730

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千紇 2024-11-24 15:59:22

如果保险选择是用户的已知值,那么您可以在创建表单时将它们作为选项传递:

$form = $this->createForm(new AgentContractFormType(), $agentContract, array(
    'insurances' => array(/* insurance choices here */),
));

然后在表单类中:

public function getDefaultOptions(array $options)
{
    return array(
        'insurances' => $options['insurances'],
        'data_class' => 'NTO\DocumentBundle\Entity\Document\AgentContract',
    );
}

然后您可以在 buildForm() 中使用它们请。希望有帮助。

If the insurance choices are a known value of the user, then you can pass them in as options when you create your form:

$form = $this->createForm(new AgentContractFormType(), $agentContract, array(
    'insurances' => array(/* insurance choices here */),
));

then in your form class:

public function getDefaultOptions(array $options)
{
    return array(
        'insurances' => $options['insurances'],
        'data_class' => 'NTO\DocumentBundle\Entity\Document\AgentContract',
    );
}

You can then use them in buildForm() as you please. Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文