Rails 设计 - 注销错误 ActionController::InvalidAuthenticityToken

Rails Devise - Logout error ActionController::InvalidAuthenticityToken

我正在使用 Devise 并尝试构建注销 link 以注销用户会话。

我已在模板中包含 jquery-ujs 文件并正确加载。

这是我的注销link

<%= link_to "Sign Out", destroy_user_session_path, :method => :delete %>

但是当我点击 link 时出现以下错误

ActionController::InvalidAuthenticityToken at /users/sign_out

ActionController::InvalidAuthenticityToken

如果您需要真实性令牌,请提供。

<%= form_tag destroy_user_session_path, method: :delete do |f| %>
  <%= f.submit 'Sign Out' %>
<% end %>