Mongoid 2.0 的自动表单生成器?导轨
有 Mongoid 2.0 的表单生成器吗? 它会自动从模型生成表单。
谢谢
Is there a formbuilder for Mongoid 2.0 ?
Which generates automatically a form from a model.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不直接使用 Rails saffolding 呢?
Why not just use Rails sacffolding?
https://github.com/mcasimir/document_form
这是我制作的 https://github.com/justinfrench/formtastic 的一个分支,只是移至 Mongoid 2。
模型
视图
这是一个基本示例:此处表单构建器将按照声明的顺序呈现字段,跳过那些具有
:private => 的字段。正确。
如果您不着急并且想要更灵活的东西,您可以随时使用与 formattastic 相同的语法指定字段广告选项,如下所示:
如果您决定尝试一下,我将不胜感激任何形式的反馈。
https://github.com/mcasimir/document_form
It's a fork from https://github.com/justinfrench/formtastic i've made, just moved to Mongoid 2.
Model
View
This is a basic example: here the form builder will render the fields in the same order they are declared, skipping those who have
:private => true
.If you are not in a hurry and you want something more flexible you can always specify fields ad options using the same syntax as formtastic, something like this:
If you'll decide to give it a try it i will appreciate any sort of feedback.