Laravel手记:执行route:cache时报LogicException
Posted cxscode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel手记:执行route:cache时报LogicException相关的知识,希望对你有一定的参考价值。
laravel5的路由支持缓存。需要执行以下命令:
php artisan route:cache
执行完毕后,报出以下错误:
Route cache cleared! [LogicException] Unable to prepare route [api/user] for serialization. Uses Closure.
这个异常的错误信息,提示的已经非常明确了:大概意思就是说在闭包里边,是不能够进行路由缓存的。那么现在就有两种办法:
① 想要继续使用闭包,那就只能放弃路由缓存(至少目前我没有其他办法,如果你有,记得告诉我)。
② 那就是在路由里边,也就是route.php中,不要使用闭包的方式,统统改为控制器。
routes/api.php,暂时注释以下代码:
/*Route::middleware(‘auth:api‘)->get(‘/user‘, function (Request $request) { return $request->user(); });*/
再次执行php artisan route:cache
Route cache cleared! [LogicException] Unable to prepare route [/] for serialization. Uses Closure.
routes/api.php,修改路由为非闭包:
/*Route::get(‘/‘, function () { return view(‘welcome‘); });*/ Route::get(‘/‘, ‘[email protected]‘);
新建/app/Http/Controllers/HomeController.php
<?php namespace App\Http\Controllers; use App\Http\Controllers\Controller; class HomeController extends Controller{ public function Index(){ return view(‘welcome‘); } }
现在就搞定啦。再次执行 php artisan route:cache
可以看到成功的信息提示啦:
Route cache cleared! Routes cached successfully!
参考:http://blog.csdn.net/hel12he/article/details/46550645
以上是关于Laravel手记:执行route:cache时报LogicException的主要内容,如果未能解决你的问题,请参考以下文章
手记解决启动SQL Server Management Studio 17时报Cannot find one of more components...的问题
laravel migrate时报错:Syntax error or access violation: 1071 Specified key was too long; max key length