Devise登录,但似乎未设置会话

问题描述

| 我刚刚升级到Devise 1.2,现在可以登录了,但是当我转到另一个页面时,before_filter调用了authenticate_account! (因为我的模型是\'account \',而不是\'user \'),它返回false,表示我没有登录。好像没有创建会话cookie。是什么原因造成的?我无法弄清楚如何找出可能导致这种情况的原因。 谢谢。     

解决方法

或添加before_filter:authenticate_user!在应用程序控制器中
class ApplicationController < ActionController::Base
  before_filter :authenticate_user!
  protect_from_forgery 
end
    ,您必须在控制器中的before过滤器中创建以下代码:
before_filter :authenticate_user!