我在我的rails应用程序中使用了Devise gem。当我点击退出时,它会带我到一个错误页面:
ActionController::InvalidAuthenticityToken in Devise::SessionsController#destroy
ActionController::InvalidAuthenticityToken
Extracted source (around line #181):
def handle_unverified_request
raise ActionController::InvalidAuthenticityToken
end
end
end
刷新同一页面时,它可以正常工作,用户可以注销。
在运行rake db:reset
之后运行正常
这是如何造成的?我该如何解决?