首页  >  文章  >  后端开发  >  为什么 Laravel 在新项目中抛出“Session Store Not Set on Request”错误?

为什么 Laravel 在新项目中抛出“Session Store Not Set on Request”错误?

Patricia Arquette
Patricia Arquette原创
2024-11-03 03:21:02960浏览

Why Does Laravel Throw a

Laravel “Session Store Not Set on Request”问题

问题:

在新创建的 Laravel 项目中,当访问登录或注册路由时,出现错误:

ErrorException in Request.php line 775:
Session store not set on request. (View: C:\Users\Matthew\Documents\test\resources\views\auth\register.blade.php)

尽管没有修改任何核心文件,仅添加路由和视图,但问题仍然存在。

答案:

要使用会话状态和 CSRF 保护,Web 中间件 必须应用于受影响的路由。这通常是通过对 Web 中间件闭包内的路由进行分组来完成的:

<code class="php">Route::group(['middleware' => ['web']], function () {
    // your routes here
});</code>

这确保闭包内的路由利用 Web 中间件提供的功能,解决“Session Store Not Set on Request”问题错误。

以上是为什么 Laravel 在新项目中抛出“Session Store Not Set on Request”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn