当我做这个php artisan route:cache对我来说,这个错误出现了。! 我怎么解决这个问题? LogicException Unable to prepare route [api/user] for serialization. Uses Closure. at C:\wamp64\www\web\vendor\laravel\framework\src\Illuminate\Routing\Route.php:1140 1136| */ 1137| public function prepareForSerialization() 1138| { 1139| if ($this->action['uses'] instanceof Closure) { > 1140| throw new LogicException("Unable to prepare route [{$this->uri}] for serialization. Uses Closure."); 1141| } 1142| 1143| $this->compileRoute(); 1144| 1 C:\wamp64\www\web\vendor\laravel\framework\src\Illuminate\Foundation\Console\RouteCacheCommand.php:62 Illuminate\Routing\Route::prepareForSerialization() 2 C:\wamp64\www\web\vendor\laravel\framework\src\Illuminate\Container\BoundMethod.php:33 Illuminate\Foundation\Console\RouteCacheCommand::handle()
1 回答
森栏
TA贡献1810条经验 获得超5个赞
出现此问题是因为您的某些路由定义是闭包或匿名函数。通常指向/
in 的默认路由routes/web.php
和in 的/user
路由routes/api.php
由闭包定义。
删除它们或将它们移动到控制器,你就可以开始了。
您可以使用该命令php artisan route:list
来识别任何使用闭包的路由。它将显示而不是动作或类名Closure
。
- 1 回答
- 0 关注
- 196 浏览
添加回答
举报
0/150
提交
取消