Laravel 5.2出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 5.2出错相关的知识,希望对你有一定的参考价值。
我是Laravel 5.2的初学者,在我的代码中遇到了问题:
use IlluminateAuthAccessGate;
...
if(Gate::denies('add-article'))
{
return redirect()->back()->with(['message'=>'Unregistered user']);
}
我收到错误后:
Non-static method IlluminateContractsAuthAccessGate::allows() cannot be called statically
有人能帮助我吗?谢谢
答案
use IlluminateSupportFacadesGate;
// or
use Gate;
你想要Facade,而不是Facade的底层类。 Facade是该类实例的静态代理。
如果你想直接使用IlluminateAuthAccessGate
这个类,你需要它的一个实例。
Laravel 5.2 Docs - Authorization - Checking Abilities - via the Gate Facade
Laravel 5.2 Docs - Facades - Class Reference
以上是关于Laravel 5.2出错的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 5.2 - 使用 composer 和 git bash 安装 laravel 时出错
使用 Laravel 5.2 连接到 Firebase -“创建资源时出错”