我正在尝试设置zend框架3 MVC Web应用程序以使用会话存储。根据本网站提供的信息 -
这一切都运作良好。我在控制器中获取会话变量,我可以将数据保存到会话容器中。问题是,我保存到容器的数据不会在后续调用中出现。我从一个页面保存搜索条件并重定向到第二个页面进行搜索并返回结果。当我进入第二页时,会话数据不存在。
在config \ global.php中我有 -
return [
'session_config' => [
// Cookie expires in 1 hour
'cookie_lifetime' => 60*60*1,
// Stored on server for 30 days
'gc_maxlifetime' => 60*60*24*30,
],
'session_manager' => [
'validators' => [
RemoteAddr::class,
HttpUserAgent::class,
],
],
'session_storage' => [
'type' => SessionArrayStorage::class,
],
];
在application \ module.php中,我修改了onBoostrap
public function onBootstrap(MvcEvent $event)
{
$application = $event->getApplication();
$svcMgr = $application->getServiceManager();
// Instantiate the session manager and
// make it the default one
//
$sessionManager = $svcMgr->get(SessionManager::class);
}
我创建了一个IndexControllerFactory
class IndexControllerFactory implements FactoryInterface
{
public function __invoke(ContainerInterface $container,
$requestedName, array $options = null)
{
// Get access to session data
//
$sessionContainer = $container->get('Books\Session');
return new IndexController($sessionContainer);
}
}
修改了我的IndexController以添加构造函数方法
class IndexController extends AbstractActionController
{
private $session;
public function __construct(Container $session)
{
$this->session = $session;
}
在application \ module.config.php中我有这个
'controllers' => [
'factories' => [
Controller\IndexController::class => Controller\Factory\IndexControllerFactory::class,
],
],
'session_containers' => [
'Books\Session'
],
答案 0 :(得分:3)
要在会话中存储内容,您可以按如下方式创建容器:
// Create a session container
$container = new Container('Books\Session');
$container->key = $value;
要从会话容器中检索某些内容,您必须创建一个具有相同名称的新容器:
// Retrieve from session container
$container = new Container('Books\Session');
$value = $container->key;
据我所知,ZF2和ZF3的工作方式类似,可以在other posts on StackOverflow或this blog post with the title Using Sessions in Zend Framework 2中找到。
如果您创建一个新的Container
来存储或解析会话中的数据,如果您自己没有传递数据,它将自动使用默认的会话管理器。
您可以看到here in the AbstractContainer::__construct
method on line 77。如果传递给构造函数的$manager
为null
,则会在the setManager
method内获取默认会话管理器。
因此,要使用会话,您无需进行大量手动配置。
如果这不能解决您的问题,请发表评论。