您好我在使用Symfony将数据存储到会话时遇到问题。
这是我的代码:
public function currentAction() {
$session = $this->get('session');
$userArray = $session->get('test');
if($session->get('test') == null) {
$userArray = User::toArray($this->getUser());
$session->set('test', $userArray);
}
$this->setModel($userArray);
$this->sendResponse();
}
当我尝试在有效时间内执行代码时,$ session-> get(' test')仍然返回null。任何人都可以帮助我吗? 我也从我的控制器类开始使用(使用Symfony \ Component \ HttpFoundation \ Session;)。