Laravel 5.4 $ redirectTo不工作

时间:2017-08-14 13:01:21

标签: php laravel-5.4

我很难将redirectTo()功能覆盖在LoginController.php shown in the Laravel docs here中。

我的控制器包含:

/**
 * URI where we redirect to after login
 *
 * @var string
 */
protected $redirectTo = 'player/home';

/**
 * Set route redirect
 *
 * @return mixed
 */
protected function redirectTo()
{
    dd("STOP"); <-- does not trigger

    if (session()->has('game.details')) {
        return route(session()->get('game.details.setup_route'));
    } else {
        return 'player/home';
    }
}

为什么dd永远不会触发,页面总是重定向到player/home?谢谢

3 个答案:

答案 0 :(得分:1)

如果您发表评论     $this->middleware("guest")Auth\RegisterController的构造函数中更改,或者在Kernel.php中更改有关来宾中间件的行。

答案 1 :(得分:0)

虽然我没有让方法覆盖工作,但我通过在login方法中更改这些行来解决它:

    if ($this->attemptLogin($request)) {
        session()->put('game.details', Game::findByUUIDOrFail($uuid));

        $this->redirectTo = route(session()->get('game.details.setup_route'));

        return $this->sendLoginResponse($request);
    }

答案 2 :(得分:0)

如果您已运行php artisan auth

像这样更改RedirectIfAuthenticated中间件

class RedirectIfAuthenticated
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @param  string|null  $guard
     * @return mixed
     */
    public function handle($request, Closure $next, $guard = null)
    {
        if (Auth::guard($guard)->check()) {

            return redirect('/home');//change the redirect here
        }

        return $next($request);
    }
}