我试图检查输入的URL是否与数据库中经过身份验证的用户slug相同。因此,如果用户访问example.com/user/bob-smith并且实际上Bob Smith已登录,则应用程序将让Bob继续,因为他在用户表中的slug是bob-smith。
我已经注册了中间件,但是当我这样做时
public function handle($request, Closure $next)
{
if($id != Auth::user()->slug){
return 'This is not your page';
}
else{
return $next($request);
}
}
我得到了
Class' App \ Http \ Middleware \ Auth'找不到
我不确定如何在中间件中使用它。任何人都可以帮忙吗?
答案 0 :(得分:9)
这很容易。看起来您没有导入Auth
facade的命名空间。
因此要么添加
<?php namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth; // <- import the namespace
class YourMiddleware {
...
}
在类声明之上或使用内联的完全限定类名
if ($id != \Illuminate\Support\Facades\Auth::user()->slug) {
或者,您可以在构造函数
中注入Guard
实例
<?php namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
class YourMiddleware {
protected $auth;
public function __construct(Guard $auth)
{
$this->auth = $auth;
}
public function handle($request, Closure $next)
{
...
if ($id != $this->auth->user()->slug) {
...
}
}