Zihao

Make small but daily progress

0%

laravel5 Unable to prepare route [/] for serialization. Uses Closure.

laravel5的路由支持缓存。需要执行以下命令:

1
php artisan route:cache

执行完毕后,报出以下错误:

1
2
3
Route cache cleared!
[LogicException]
Unable to prepare route [/] for serialization. Uses Closure.

这个异常的错误信息,提示的已经非常明确了:大概意思就是说在闭包里边,是不能够进行路由缓存的。那么现在就有两种办法:
① 想要继续使用闭包,那就只能放弃路由缓存(至少目前我没有其他办法,如果你有,记得告诉我)。
② 那就是在路由里边,也就是route.php中,不要使用闭包的方式,统统改为控制器。

具体例子:

1
2
3
4
5
6
7
8
// 之前,报错的路由
Route::get('/', function()
{
return veiw('welcome');
});

// 修改之后,能够路由缓存的方式
Route::get('/', 'HomeController@index');

现在就搞定啦。再次执行 php artisan route:cache 可以看到成功的信息提示啦:

1
2
Route cache cleared!
Routes cached successfully!

欢迎关注我的其它发布渠道