我正在使用带有引导程序和表单水平类的简单表单。我有一些输入,我想将它们组合在一行上。
例如。
描述:|____________________________________________________________| 日期/月/年:|__________________| |__________________| |__________________|
我尝试了以下方法:
<%= simple_form_for(@example, :html => { :class => 'form-horizontal' }) do |f| %>
<%= f.input :description %>
<%= f.input :date, :label => "Date/Month/Year", :wrapper => :append do %>
<%= f.input_field :date %>
<%= f.input_field :month %>
<%= f.input_field :year %>
<% end %>
<% end %>
但后来我收到以下错误消息
nil:NilClass 的未定义方法“+”
这在第二个触发<%= f.input_field %>