运作正常的代码(laravel)迁移到Mac上取不到session

我在windows和linux上都正常的项目,放到mac上后,取不到session
为了避免laravel项目的session()不能即时,我使用了Session::put()
可是依然没用,请问如何解决呢?
session写入
取session
页面效果

补充一下:
如果我在写入session的地方打个断点,在存入session后,调用一下,是可以正常取到值的。
请解惑。。

阅读 3.5k
3 个回答

哈哈,我之前也是被这个搞蒙了很长一段时间。

不过后来解决了,很简单,不在写入session的地方使用dddump等方法。

laravel保存session是在中间件中进行的,源代码如下

public function handle($request, Closure $next)
    {
        $this->sessionHandled = true;

        // If a session driver has been configured, we will need to start the session here
        // so that the data is ready for an application. Note that the Laravel sessions
        // do not make use of PHP "native" sessions in any way since they are crappy.
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);

            $request->setSession($session);
        }

        $response = $next($request);

        // Again, if the session has been configured we will need to close out the session
        // so that the attributes may be persisted to some storage medium. We will also
        // add the session identifier cookie to the application response headers now.
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);

            $this->collectGarbage($session);

            $this->addCookieToResponse($response, $session);
        }

        return $response;
    }

保存session的function

protected function addCookieToResponse(Response $response, SessionInterface $session)
    {
        if ($this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }

        if ($this->sessionIsPersistent($config = $this->manager->getSessionConfig())) {
            $response->headers->setCookie(new Cookie(
                $session->getName(), $session->getId(), $this->getCookieExpirationDate(),
                $config['path'], $config['domain'], Arr::get($config, 'secure', false)
            ));
        }
    }

可以看到,保存session的方法在 $response = $next($request) 之后进行的,你在你的代码中使用了dd()、dump()、exit()等方法,后面的保存session的代码将不能执行。

Laravel的session机制是:在程序的运行的过程中是把你的对session的操作用一个类记录在内存中,然后在response发送给用户以后执行session中间中的terminate方法把session数据持久化到相应的介质中去。如果在windows和linux下面没问题,到了mac下就出了题很有可能是最后持久化的时候出了问题。
你是否更改了存储介质,比如从redis变到了文件。那么那个文件有没有写的权限?要给storage目录足够的权限
如果是用内存存储的session那么redis或者memerycache是否配置正确?
还有就像楼上说的那样,不要用dd,因为dd完之后会终止程序,session就不会持久化,只是将运行内存中的值给你打印出来了而已。
还有一个debug方法,在Session::put()之后加一句

Session::save();

这句代码是手动持久化session。如果成功说明你的session持久化没问题,只是你程序运行的时候没有到持久化这一步。
如果失败回报失败的原因。
有一次我遇到了session写不进去是因为硬盘满了...

从代码上来看应该没问题,很简单的逻辑,而且在 windows 和 linux 上都是正常的。

个人再提供个思路:看下在 chrome Application 的 laravel_session 值。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题