如题,用户退出功能,仿照了 ruby-china 的前端代码,
<li class=""><%= link_to t('user.sign_out'), url(:accounts, :destroy), :method => "delete" %></li>
引入了 jquery-ujs
生成的 html 如下:
<li class=""><a href="/sign_out" data-method="delete" rel="nofollow">退出</a></li>
页面点击退出时,显示 forbidden,后台的 log 提示 attack prevented by Rack::Protection::AuthenticityToken
怀疑是和 csrf 有关,但是不知道怎么规避?