微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – Laravel 5自定义验证重定向

我有一个网站,包括2个不同的登录表单,2个位置,一个在导航栏上,另一个登录页面,将在系统捕获未登记的访问者时使用.

我可以问一下我在LoginRequest.PHP中做错了什么,如果登录过程中出现任何类型的错误,我会设置一个重定向自定义登录页面的条件?我的代码如下:

<?PHP namespace App\Http\Requests;

use App\Http\Requests\Request;

class LoginRequest extends Request {

    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
        'login_email'               =>  'required',
        'login_password'            =>  'required'
        ];
    }


    public function messages()
    {
        return [
            'login_email.required'          =>  'Email cannot be blank',
            'login_password.required'       =>  'Password cannot be blank'
        ];
    }

    public function redirect()
    {
        return redirect()->route('login');
    }
}

如果登录页面有任何错误代码似乎没有重定向,则代码假定重定向从导航栏登录用户.

谢谢.

解决方法:

找到了解决方案.我需要做的就是覆盖初始响应

FormRequest.PHP

像这样,它就像一个魅力.

public function response(array $errors)
{
    // Optionally, send a custom response on authorize failure 
    // (default is to just redirect to initial page with errors)
    // 
    // Can return a response, a view, a redirect, or whatever else

    if ($this->ajax() || $this->wantsJson())
    {
        return new JsonResponse($errors, 422);
    }
    return $this->redirector->to('login')
         ->withInput($this->except($this->dontFlash))
         ->withErrors($errors, $this->errorBag);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。