symfony2形式选择和mongodb

发布于 2024-12-08 20:53:59 字数 262 浏览 0 评论 0原文

使用实体时,我们可以通过表单字段类型实体从实体加载选择,

$builder->add('group', 'entity', array(
    'class' => 'Fist\CoreBundle\Document\Group',
));  

但是使用 mongodb 文档时,从文档注入选择选项的最佳方法是什么?

就我而言,从组文档加载所有组。有没有比传递给表单构造函数更好的方法?

谢谢大家

When using Entity we can load choices from Entity via form field type entity

$builder->add('group', 'entity', array(
    'class' => 'Fist\CoreBundle\Document\Group',
));  

but when using mongodb document what is the best way to inject select options from Document?

in my case load all Groups from Group document. Is there better way to do that than passing to form constructor?

Thank you all

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

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

发布评论

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

评论(3

自由如风 2024-12-15 20:53:59

EntityType 的 Doctrine MongoDB ODM 等效项是 Symfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType。 DocumentChoiceListDocumentsToArrayTransformerDocumentToIdTransformer 也包含在 DoctrineMongoDBBundle 中,并与它们的 ORM 等效项并行。

The Doctrine MongoDB ODM equivalent of EntityType is Symfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType. DocumentChoiceList, DocumentsToArrayTransformer, and DocumentToIdTransformer are also included in DoctrineMongoDBBundle and parallel their ORM equivalents.

初见你 2024-12-15 20:53:59

entity改为document,就可以直接使用快捷方式了。例如:FistCoreBundle:Group

Change entity to document, and you can just use the shortcut. ex: FistCoreBundle:Group

旧话新听 2024-12-15 20:53:59

我不得不部分偏离迪伦·奥利弗的答案。

Symfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType

无法找到,截至 2016 年 11 月,DocumentType 似乎驻留在此处:

Doctrine\Bundle\MongoDBBundle\Form\Type\DocumentType

I had to partially stray from Dylan Oliver's answer.

Symfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType

could not be found, as of November 2016 DocumentType seems to reside here:

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