フォームタグがあり、フォームに2つのボタンがあります。送信ボタンをクリックして、フォームでさまざまなアクションを呼び出すにはどうすればよいですか。
これが私のコードです:
<%= 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 %>
「再処理」をクリックすると、同じ形式で別のアクションを呼び出したいと思います。
これどうやってするの?
助けてください
前もって感謝します