下のリンクをクリックすると、/messages/discard.1
ではなく に移動し/messages/discard/1
ます。私は何が間違っているのですか?
私の見解:
<%= link_to t('.destroy', :default => t("helpers.links.destroy")),
messages_discard_path(@messages.id),
:method => 'post',
:confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')),
:class => 'btn btn-danger' %>
私のルート:
match '/messages/discard' => 'messages#discard', :via => :post