我正在将 rails 3.1.0.rc3 与 formtastic 2.0.0.rc2 一起使用,但出现此错误 -

undefined method `inputs' for #<ActionView::Helpers::FormBuilder:0x000001059c2fb0>

这是代码块
 = form_tag '#', :class => 'formtastic' do
  = fields_for CustomFields::Field.new, :builder => Formtastic::Helpers::FormHelper.builder do |g|
    = g.inputs :name => :attributes do
      = g.input :_alias
      = g.input :hint
      = g.input :text_formatting, :as => 'select', :collection => options_for_text_formatting, :include_blank => false, :wrapper_html => { :style => 'display: none' }
      = g.input :target, :as => 'select', :collection => options_for_association_target, :include_blank => false, :wrapper_html => { :style => 'display: none' }

这是一个错误吗?

谢谢,亚历克斯

最佳答案

您正在尝试在此处使用 formtastic 方法。当您实际上处于 Rails 表单构建器的块中时。

例如,您需要在 Gemfile 中使用 semantic_form_for 和 formtastic 来使用 f.inputs ..

关于formtastic - rails3.1 和 formtastic 2.0.0.rc2 - 未定义的方法 `inputs',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6379007/

10-12 23:20