美文网首页
解决错误 Session store not set on re

解决错误 Session store not set on re

作者: JJNile | 来源:发表于2019-03-24 23:23 被阅读0次

    把session控制器添加到相应的Controll,会出现这样的错误,解决这个错误的方法是,把以下代码添加到app/Http/Kernel.php中api中间件组中

    'api' => [
      \App\Http\Middleware\EncryptCookies::class,          // <------- 添加的代码
      \Illuminate\Session\Middleware\StartSession::class, // <------ 添加的代码
      'throttle:60,1',
      'bindings',
    ],
    

    参考链接

    https://learnku.com/articles/24347

    相关文章

      网友评论

          本文标题:解决错误 Session store not set on re

          本文链接:https://www.haomeiwen.com/subject/bfqmvqtx.html