当我单击下面的链接时,它会转到/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