当我做:
http://localhost:3000/signout
它说:
No route matches [GET] "/signout"
这是因为在我的路由配置文件中我有:
match '/signout', to: 'sessions#destroy', via: :delete
所以我的问题是是否可以通过 URL 发送“删除”请求,而不是按链接:
<%= link_to "Sign out", signout_path, :method => :delete %>
我可以通过 URL 模仿动作。