(没有路线匹配[DELETE]" / subscriptions")
使用
<%= link_to 'Unsubscribe', subscriptions_path(feed_id: session[:read_random].last), method: :delete, remote: :true %>
routes.rb中:
resources :subscriptions
我需要使用DELETE方法实际拥有/ subscriptions / 1 URI的链接,但我似乎只能得到/订阅?feed_id = 1
答案 0 :(得分:3)
尝试指定要删除的ID或对象:
<%= link_to 'Unsubscribe', subscription_path(session[:read_random].last), method: :delete, remote: :true %>