16

在“使用 Rails 进行敏捷 Web 开发”(第三版)第 537 - 541 页中,它具有“自定义表单构建器”代码,如下所示:

  class TaggedBuilder < ActionView::Helpers::FormBuilder
    # <p> # <label for="product_description">Description</label><br/> # <%= form.text_area 'description' %> #</p>
    def self.create_tagged_field(method_name) 
      define_method(method_name) do |label, *args|
        @template.content_tag("p" , @template.content_tag("label" , label.to_s.humanize, 
        :for => "#{@object_name}_#{label}") + "<br/>" + super)
      end
    end
    field_helpers.each do |name| 
      create_tagged_field(name)
    end 
  end

此代码不适用于 Ruby 1.9.1。它返回错误如下:

implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly. (ActionView::TemplateError)

我的问题是:我应该在代码中更改什么来解决这个问题?

4

2 回答 2

21

The super above passed all parameters (see this recent question).

As the error message states, you must here "specify all arguments explicitly". Replace super with super(label, *args).

于 2010-04-03T19:47:50.210 回答
17

我在没有参数的定义方法中遇到了这个问题

define_method :"#{info_type}_info" do

  info = super
  .......

end

而且还是发现了这个问题。我必须明确地加上括号:

define_method :"#{info_type}_info" do

  info = super()
  .......

end
于 2012-11-24T18:43:49.740 回答