繁体   English   中英

如何重写用于AJAX的方法?

[英]How to rewrite a method for using with AJAX?

我有一个特征 ,可以处理密码恢复逻辑:

public function reset(Request $request)
{
    $this->validate($request, $this->rules(), $this->validationErrorMessages());

    $response = $this->broker()->reset(
        $this->credentials($request), function ($user, $password) {
            $this->resetPassword($user, $password);
        }
    );

    return $response == Password::PASSWORD_RESET
                ? $this->sendResetResponse($response)
                : $this->sendResetFailedResponse($request, $response);
}

protected function rules()
{
    return [
        'token' => 'required',
        'email' => 'required|email',
        'password' => 'required|confirmed|min:6',
    ];
}

protected function sendResetFailedResponse(Request $request, $response)
{
    return redirect()->back()
                ->withInput($request->only('email'))
                ->withErrors(['email' => trans($response)]);
}

我想将其与AJAX调用一起使用。 我应该如何重写sendResetFailedResponse()
当我在没有AJAX的情况下使用此逻辑时,如果对rules()验证失败,我只会得到带有422状态代码的错误响应。 但是,如果在检查令牌有效性( reset() )时验证失败,则返回的状态码没有错误。
我的AJAX就像

axios.post('/password/reset', {
                    //data to send
                })
                .then((response) => {
                    ...
                })
                .catch((error) => {
                    //I can catch errors which are returning from rules() fail
                    //I want to catch non-valid token error here too
                }); 

我试图覆盖

protected function sendResetFailedResponse(Request $request, $response)
{
    return response(['email' => trans($response)]);
}

但是此代码在AJAX .catch()之后返回令牌错误

我只是在reset方法中执行此操作,效果很好。

public function reset(Request $request)
{
    $this->validate($request, $this->rules(), $this->validationErrorMessages());
    // Here we will attempt to reset the user's password. If it is successful we
    // will update the password on an actual user model and persist it to the
    // database. Otherwise we will parse the error and return the response.
    $response = $this->broker()->reset(
        $this->credentials($request), function ($user, $password) {
            $this->resetPassword($user, $password);
        }
    );
    if ($request->ajax()){
        if ($response == Password::PASSWORD_RESET) {
            return response()->json(['message' => 'Success'],200);
        } else {
            return response()->json(['error' => 'Please try again'], 422);
        }
    }
    // If the password was successfully reset, we will redirect the user back to
    // the application's home authenticated view. If there is an error we can
    // redirect them back to where they came from with their error message.
    return $response == Password::PASSWORD_RESET
    ? $this->sendResetResponse($response)
    : $this->sendResetFailedResponse($request, $response);
}

希望这可以帮助

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM