从显示视图:我想传递显示的消息的 id 以丢弃操作并丢弃消息。
从索引视图:我想传递已检查消息的 ID 以丢弃操作并一次性将它们全部丢弃。
但是即使我检查多个并从索引视图提交,我也只能一次删除一条记录。
如何使用相同的操作归档 1 和 2????
路线
match 'messages/discard(/:id)' => 'messages#discard', :via => :post , :as => :discard_messages
索引视图
<%= form_tag(:action => discard, :via => 'post') do %>
<% @messages.each do |m| %>
<tr>
<td><%= check_box_tag "id",m.id %></td>
<td><%= m.last_message.id %></td>
<td><%= 'unread' if m.is_unread?(current_user) %></td>
<td><%= m.last_message.created_at.to_s(:jp) %></td>
<td><%= m.last_sender.username %></td>
<td><%= link_to m.subject, show_messages_path(:id => m, :breadcrumb => @box) %></td>
</tr>
<% end %>
<%= submit_tag "discard", :class => 'btn' %>
<% end %>
显示视图
<%= link_to 'Discard', discard_messages_path(@messages), :class => 'btn', :method => 'post' %>
控制器
def discard
conversation = Conversation.find_all_by_id(params[:id])
if conversation
current_user.trash(conversation)
flash[:notice] = "Message sent to trash."
else
conversations = Conversation.find(params[:conversations])
conversations.each { |c| current_user.trash(c) }
flash[:notice] = "Messages sent to trash."
end
redirect_to :back
end