2

(没有路线匹配 [DELETE] "/subscriptions")

使用

<%= link_to 'Unsubscribe', subscriptions_path(feed_id: session[:read_random].last), method: :delete, remote: :true %>

路线.rb:

resources :subscriptions

我需要链接才能使用 DELETE 方法实际具有 /subscriptions/1 的 URI,但我似乎只能得到 /subscriptions?feed_id=1

4

1 回答 1

3

尝试指定要删除的 id 或对象:

<%= link_to 'Unsubscribe', subscription_path(session[:read_random].last), method: :delete, remote: :true %>
于 2012-06-15T04:15:00.330 回答