使用 Propel 在 Symfony2 中形成表单?
使用 Propel ORM 时,我似乎找不到任何有关 Symfony2 表单的文档。这还支持吗?当我运行控制台 API 时,它列出了所有 propel 命令,但没有一个是 propel:build-forms
。这是否意味着 Symfony2 的 Propel ORM 不支持表单?
I can't seem to find any documentation on Symfony2 forms when using Propel ORM. Is this even supported? When I run the console API it lists all propel commands and none of them was propel:build-forms
. Does this mean Propel ORM for Symfony2 does not support forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
表单在 POPO(普通旧 PHP 对象)级别上工作。它们与您保存模型的方式无关。
Forms work on the POPO (Plain Old PHP Objects) level. They have nothing to do with the way you're persisting your model.
更准确地说,Propel + Symfony2 Forms 的工作方式就像一个魅力: http://www.propelorm.org/cookbook/symfony2/mastering-symfony2-forms-with-propel.html
To be more precise, Propel + Symfony2 Forms work like a charm: http://www.propelorm.org/cookbook/symfony2/mastering-symfony2-forms-with-propel.html