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 时访问资源时出错

使用 Laravel 5.2 连接到 Firebase -“创建资源时出错”

在 forge 上安装 Laravel 5.2 时出错

将数据从我的 ionic/angular.js 应用程序发布到 laravel 5.2 数据库会出错

使用 Laravel 5.2 在数据表上出现 Ajax 错误