我正在尝试在我的 CakePHP 2.3 应用程序中使用会话。当我将此添加到我的视图中时:
$this->Session->write('key','value');
我收到以下错误:
Warning (512): Method SessionHelper::write does not exist [CORE\Cake\View\Helper.php, line 179]
我尝试将其添加到我的控制器中:
var $helpers = array('Html', 'Form', 'Js'=>array("Jquery"),"Session");
public $components = array('RequestHandler','Session');
但错误仍然发生。有谁知道发生了什么?
谢谢