Laravel Inertia (Vue) - 无需重定向即可进行身份验证

Posted

技术标签:

【中文标题】Laravel Inertia (Vue) - 无需重定向即可进行身份验证【英文标题】:Laravel Inertia (Vue) - Authenticate without Redirect 【发布时间】:2020-10-27 22:57:45 【问题描述】:

我正在向基本 Laravel 登录路径发送普通 Inertia 帖子:

submit() 
      this.$inertia.post("/login", 
        email: this.emailAddress,
        password: this.password,
      , 
        preserveState: true,
        preserveScroll: true,
      );

我能够按预期捕获验证错误,但我试图避免的是成功用户身份验证后的重定向,而是继续进入“登录”状态(更新标题以显示用户信息等)。

Laravel AuthenticatesUsers trait 包含两个关键方法,这些方法在开箱即用的登录流程中被调用

public function login(Request $request)
    
        $this->validateLogin($request);

        // If the class is using the ThrottlesLogins trait, we can automatically throttle
        // the login attempts for this application. We'll key this by the username and
        // the IP address of the client making these requests into this application.
        if (method_exists($this, 'hasTooManyLoginAttempts') &&
            $this->hasTooManyLoginAttempts($request)) 
            $this->fireLockoutEvent($request);

            return $this->sendLockoutResponse($request);
        

        if ($this->attemptLogin($request)) 
            return $this->sendLoginResponse($request);
        

        // If the login attempt was unsuccessful we will increment the number of attempts
        // to login and redirect the user back to the login form. Of course, when this
        // user surpasses their maximum number of attempts they will get locked out.
        $this->incrementLoginAttempts($request);

        return $this->sendFailedLoginResponse($request);
    

protected function sendLoginResponse(Request $request)
    
        $request->session()->regenerate();

        $this->clearLoginAttempts($request);

        if ($response = $this->authenticated($request, $this->guard()->user())) 
            return $response;
        

        return $request->wantsJson()
                    ? new Response('', 204)
                    : redirect()->intended($this->redirectPath());
    

我正在努力弄清楚是否甚至可以在不以这种方式重定向的情况下对用户进行身份验证。

【问题讨论】:

【参考方案1】:

您需要使用 javascript 前端,而不是 Inertia::post() 。一种方法是使用 Axios

submit() 
    const data = ...this.form.data();
    axios.post('/auth/login', data, 
       headers: 
          'Content-Type': 'application/json',
       ,
    )
    .then(res => 
       console.log('login success!', res);
    );

【讨论】:

【参考方案2】:

检查您的表单和提交方式 - 您是否阻止表单提交的默认行为?似乎您正在发送 POST,但也触发了本机表单行为。

你也可以在你的 LoginController 中设置一个$redirectTo,同时检查RouteServiceProvider,如果没有给出任何其他信息,有一个public const HOME = '/'会触发重定向。

【讨论】:

以上是关于Laravel Inertia (Vue) - 无需重定向即可进行身份验证的主要内容,如果未能解决你的问题,请参考以下文章

在 Inertia.js Vue 文件中访问 Laravel 的 .env 变量

如何使用 Laravel 8、Inertia.js 和 Vue3 定义全局变量?

为 Vue 使用 2 个不同的刀片根模板,以及 Laravel 8 和 Inertia?

Laravel Inertia 中的 Vue mixins

如何使用 Inertia Js、Vue 和 Laravel 重新加载持久布局或观看道具

使用 Laravel Vue Inertia 堆栈中的数据重定向路由