Mongoid 2.0 的自动表单生成器?导轨

发布于 2024-12-07 15:04:25 字数 54 浏览 1 评论 0原文

有 Mongoid 2.0 的表单生成器吗? 它会自动从模型生成表单。

谢谢

Is there a formbuilder for Mongoid 2.0 ?
Which generates automatically a form from a model.

Thanks

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

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

发布评论

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

评论(2

清风疏影 2024-12-14 15:04:25

为什么不直接使用 Rails saffolding 呢?

Why not just use Rails sacffolding?

萌无敌 2024-12-14 15:04:25

https://github.com/mcasimir/document_form

gem 文档表单

这是我制作的 https://github.com/justinfrench/formtastic 的一个分支,只是移至 Mongoid 2。

模型

  class Person
    include Mongoid::Document
    include Mongoid::MultiParameterAttributes

    validates_presence_of :name

    field :name
    field :secret,            :private => true
    field :birthday,          :type => Date
    field :department_number, :type => Integer, :range => 1..10

    field :description,       :long => true
  end

视图

    <% document_form_for @object do |f| %>
      <%= f.inputs %>
      <%= f.buttons %>
    <% end %>

这是一个基本示例:此处表单构建器将按照声明的顺序呈现字段,跳过那些具有 :private => 的字段。正确。

如果您不着急并且想要更灵活的东西,您可以随时使用与 formattastic 相同的语法指定字段广告选项,如下所示:

  <% f.inputs do %>
    <%= f.input :title %>
    <%= f.input :published, :label => "This post is published" %>
    <%= f.input :section_id %>
    <%= f.input :image_filename, :hint => "540x300" %>
  <% end %>

如果您决定尝试一下,我将不胜感激任何形式的反馈。

https://github.com/mcasimir/document_form

gem document_form

It's a fork from https://github.com/justinfrench/formtastic i've made, just moved to Mongoid 2.

Model

  class Person
    include Mongoid::Document
    include Mongoid::MultiParameterAttributes

    validates_presence_of :name

    field :name
    field :secret,            :private => true
    field :birthday,          :type => Date
    field :department_number, :type => Integer, :range => 1..10

    field :description,       :long => true
  end

View

    <% document_form_for @object do |f| %>
      <%= f.inputs %>
      <%= f.buttons %>
    <% end %>

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:

  <% f.inputs do %>
    <%= f.input :title %>
    <%= f.input :published, :label => "This post is published" %>
    <%= f.input :section_id %>
    <%= f.input :image_filename, :hint => "540x300" %>
  <% end %>

If you'll decide to give it a try it i will appreciate any sort of feedback.

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