我有一个基于bootstrap的表单,如下所示,带有隐藏字段:
<%= form_for @epochdate, {:class => "form-inline", :remote => true} do |f| %>
<%= render 'shared/error_messages', :object => f.object %>
<%= f.text_field :currency, :class=> "input-small submittable", :placeholder=>"home fx", :value => @epochdates.currency %>
<%= f.text_field :start_year, :class=> "input-small submittable", :placeholder=>"home fx", :value => @epochdates.start_year %>
<%= hidden_field_tag :scenario_id, @scenario.id, :class=> "submittable" %>
<%= f.submit "Submit", :class => "btn" %>
<% end %>
当我尝试上面的表单时,单击提交时没有任何反应(jquery ajax提交正在我的应用程序中的其他表单上工作)
我不确定是否需要在隐藏字段中添加一个可提交的类,以及是否放置:remote =&gt; {}内外的真实电话。我确信有一些简单的我可以忽略但不确定它是什么