目前我有一个按钮被添加到索引表单的情况。这与搜索和复选框等其他功能完美结合,这些功能也是索引表单的一部分。
的代码index.html.erb
:
<%= form_tag order_path, :method => 'get' do %>
<p>
<%= submit_tag "Historical Search", :account_short => nil %>
<%= text_field_tag :search, params[:search] %>
</p>
<% end %>
<%= form_tag sendnext_order_path, :method => :put do %>
<%= submit_tag "Send to Desk" %><br/>
-- other code from index-form
<% end %>
结合controller
:
def sendnext
Order.update_all(["status_id = ? ", "2"], :id => params[:order_ids])
redirect_to order_path, notice: 'Order succesfully send to desk.'
end
现在我想在按钮旁边添加第二个按钮,该Send to Desk
按钮具有与现有工作按钮不同的另一个操作。直到现在我还没有能力意识到这一点。
请指教。欢迎任何反馈。