我是 cakephp 的新手,并且我在我的登录实用程序中使用 auth...我想重定向到登录页面以防万一我的所有操作都经历了会话...我编写了类似\
public function index() {
if(!$this->Session->read('username'))
$this->logout();
$this->set('users', $this->paginate());
}
但是对于我的所有操作,例如 add(),edit()...每次我需要检查会话变量...如果我在 __construct 中编写条件
public function __construct()
{
if(!$this->Session->read('username'))
$this->logout();
}
它给了我这样的错误
Error: Call to a member function read() on a non-object
谁能建议我