symfony2形式选择和mongodb
使用实体时,我们可以通过表单字段类型实体从实体加载选择,
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
EntityType 的 Doctrine MongoDB ODM 等效项是 Symfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType。
DocumentChoiceList
、DocumentsToArrayTransformer
和DocumentToIdTransformer
也包含在 DoctrineMongoDBBundle 中,并与它们的 ORM 等效项并行。The Doctrine MongoDB ODM equivalent of
EntityType
isSymfony\Bundle\DoctrineMongoDBBundle\Form\Type\DocumentType
.DocumentChoiceList
,DocumentsToArrayTransformer
, andDocumentToIdTransformer
are also included in DoctrineMongoDBBundle and parallel their ORM equivalents.将
entity
改为document
,就可以直接使用快捷方式了。例如:FistCoreBundle:Group
Change
entity
todocument
, and you can just use the shortcut. ex:FistCoreBundle:Group
我不得不部分偏离迪伦·奥利弗的答案。
无法找到,截至 2016 年 11 月,DocumentType 似乎驻留在此处:
I had to partially stray from Dylan Oliver's answer.
could not be found, as of November 2016 DocumentType seems to reside here: