0

我为我的应用程序创建了一个自定义 FormBuilder,但我不明白为什么我需要传递如下两个参数:

f.text_field :my_model, :my_field

这是我的建设者:

class AceBuilder < ActionView::Helpers::FormBuilder
  %w[text_field password_field text_area].each do |method_name|
    define_method(method_name) do |object_name, method, *args|
      options = args.extract_options!

      @template.content_tag(:div, :class => "control-group #{@object.errors[method].length > 0 ? 'error' : ''}") do
        @template.concat(
            @template.content_tag(:label,
                                  options[:label] || method.to_s.humanize,
                                  :class => 'control-label',
                                  :for => "#{object_name}_#{method}"))
        @template.concat(
            @template.content_tag(:div,
                                  :class => "controls") do
              @template.concat(super(method))

              @template.concat(
                  @template.content_tag(:span,
                                        @object.errors[method].join,
                                        :for => "#{object_name}_#{method}",
                                        :class => "help-inline"
                  )
              )
            end
        )
      end
    end
  end

我知道

define_method(method_name) do |object_name, method, *args|

有两个参数,所以我的问题是:

我该如何编写这个 FormBuilder,这样我就可以这样称呼它:

f.text_field :my_field

谢谢。

4

1 回答 1

0

这很容易,在我意识到如何:用@object_name替换object_name

class AceBuilder < ActionView::Helpers::FormBuilder
  %w[text_field password_field text_area].each do |method_name|
    define_method(method_name) do |method, *args|
      options = args.extract_options!

      @template.content_tag(:div, :class => "control-group #{@object.errors[method].length > 0 ? 'error' : ''}") do
        @template.concat(
            @template.content_tag(:label,
                                  options[:label] || method.to_s.humanize,
                                  :class => 'control-label',
                                  :for => "#{@object_name}_#{method}"))
        @template.concat(
            @template.content_tag(:div,
                                  :class => "controls") do
              @template.concat(super(method))

              @template.concat(
                  @template.content_tag(:span,
                                        @object.errors[method].join,
                                        :for => "#{@object_name}_#{method}",
                                        :class => "help-inline"
                  )
              )
            end
        )
      end
    end
  end
于 2013-05-20T12:29:02.657 回答