インデックス ビューでチェックされたすべてのメッセージを問題なく untrash できます。
しかし、表示ビューでは、生成されたリンクは /messages/discard.3 へのリンクを表示します。この 3 は ID である可能性があります。
どうすればそれを機能させることができますか?メッセージ/破棄/3にリンクする必要があります
私のファイルはこれらのようなものです
ルート.rb
get "messages/received"
get "messages/sent"
get "messages/trash"
get 'messages/:id' => 'messages#show', :as => :show_messages
match 'messages/new/:username', :to => 'messages#new', :as => :new_messages
match 'messages/deliver' => 'messages#deliver', :via => :post
match 'messages/discard' => 'messages#discard', :via => :post, :as => :discard_messages
match 'messages/untrash' => 'messages#untrash', :via => :post
ビュー 1 (index.html.erb)
<%= form_tag(:action=> discard) do %>
<% @messages.each do |m| %>
<tr>
<td><%= check_box_tag "checked_items[#{m.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 %></td>
<td><%= m.last_sender.username %></td>
<td><%= link_to m.subject, show_messages_path(m) %></td>
</tr>
<% end %>
ビュー 2 (show.html.erb)
<%= link_to 'Trash', discard_messages_path(@messages) %>
messages_controller.rb
def discard
conversation = Conversation.find_all_by_id(params[:checked_items].keys)
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