Я создаю приложение реагирования и использую Redux с Thunk, но с некоторым успехом, но недавно у меня возникла необходимость объединить некоторые действия. Кажется, у меня проблема в том, что даже вызов API первого действия возвращает 422, так что я ожидаю, что возвращенный Promise.reject(error);
остановит стек, но он все равно будет двигаться вниз по цепочке.
Вот код:
actions.js
вот цепочка действий, которые я пытаюсь использовать:
export const resetPasswordAndRefreshUser = (password, password_confirmation) => {
return (dispatch, getState) => {
return dispatch(resetPassword(password, password_confirmation))
.then((result) => {
//// This shouldn't get executed in resetPassword rejects /////
//// console.log(result) is undefined ////
return dispatch(getAuthedUser());
}, (error) =>{
// Do Nothing
}).catch((error) => {
return Promise.reject(error);
});
}
};
И сами определения действий:
export const resetPassword = (password, password_confirmation) => {
return dispatch => {
dispatch({
type: authConstants.LOGIN_RESET_REQUEST
});
return AuthService.resetPassword(password, password_confirmation)
.then((result) => {
dispatch({
type: authConstants.LOGIN_RESET_SUCCESS
});
dispatch({
type: alertConstants.SUCCESS,
message: 'Your new password was set successfully.'
});
history.push('/');
}, error => {
dispatch({
type: authConstants.LOGIN_RESET_ERROR
});
dispatch({
type: alertConstants.ERROR,
message: 'Error: ' + error
});
});
}
};
export const getAuthedUser = () => {
return dispatch => {
dispatch({
type: authConstants.LOGIN_AUTHED_USER_REQUEST
});
return AuthService.getAuthedUser()
.then((result) => {
dispatch({
type: authConstants.LOGIN_AUTHED_USER_SUCCESS,
user: result
});
}, error => {
dispatch({
type: authConstants.LOGIN_AUTHED_USER_ERROR
});
dispatch({
type: alertConstants.ERROR,
message: 'Error: ' + error
});
});
};
};
service.js
static getAuthedUser = () => {
return API.get(config.api.url + '/me')
.then((response) => {
// Get Current User From LocalStorage
const vmuser = JSON.parse(localStorage.getItem('vmuser'));
if (vmuser) {
// Update User & Set Back In LocalStorage
vmuser.user = response.data;
localStorage.setItem('vmuser', JSON.stringify(vmuser));
}
return response.data;
}).catch(error => {
return Promise.reject(error);
}).finally(() => {})
};
static resetPassword = (password, password_confirmation) => {
return API.post(config.api.url + '/reset', { password, password_confirmation })
.then((response) => {
return response.data;
}).catch(error => {
console.log('reset error');
return Promise.reject(error);
}).finally(() => {})
};
Теперь API-пароль resetpassword возвращает 422 (как я хочу, для тестирования). Но когда я просматриваю вкладку сетевых запросов, я все еще вижу, что выполняется getAuthedUser , хотя обещание должно быть отклонено в authservice .
Я просто неправильно понимаю Обещания и когда .then()
должно быть выполнено?