在Route.php行817中:无法准备要进行序列化的路由[api / user]。使用闭包

时间:2018-06-25 16:52:42

标签: laravel

我从web.php文件中清除了每个关闭的实例,但是当我运行php artisan route:cache时仍然遇到此错误。如何解决此问题。

我使用的路由格式为:

Route::get('/home',[

      'uses'=>'HomeController@index',

])->name('home');

,另一种格式是

Route::get('/profile',[

      'uses'=>'profileController@index',

]);

修改:格式化代码

1 个答案:

答案 0 :(得分:0)

我想出了一种解决此错误的方法,该错误是由于 routes > api.php 中存在Route引起的,只需将其注释掉即可成功缓存文件。

// Route::middleware('auth:api')->get('/user', function (Request $request) {

//     return $request->user();

// });