我有我的表单标签,并且我的表单中有两个按钮。单击提交按钮时,如何在表单中调用不同的操作。
这是我的代码:
<%= form_for :attachment_metadata, :url=>{:action=>'delete_files'}, :html=>{:onsubmit=> "return confirm('Are you sure, you want to delete selected files?');",:multipart => true} do |f| %>
<table>
..........Some stuff here..........
</table>
<%= submit_tag 'Reprocess', :class =>'button' %>
<%= submit_tag 'Remove', :class =>'button' %>
<% end %>
单击“重新处理”时,我想以相同的形式调用不同的操作。
我怎样才能做到这一点?
请帮忙
提前致谢