我在 cakephp 应用程序中使用会话,但看起来我设置的会话没有在我正在使用的各种控制器之间共享。所以可以说我有
页面控制器
public $components = array( 'Email', 'Session', 'RequestHandler', 'Cookie');
//this is pages/home
public function home(){
$this->Session->write("bunny", "123456");
debug($this->Session->read("bunny"));
}
个人控制器
public $components = array( 'Email', 'Session', 'RequestHandler', 'Cookie');
//this is person/index
public function index(){
debug($this->Session->read("bunny");
}
当我转到网址http://domian.org/person/index时,该调试行为空。它不应该打印出“123456”吗?