当用户尝试更改密码并失败时,我想在后端向用户显示该消息。
使用Postman,它打印有效(?)错误消息400错误请求
{
"old_password": [
"Invalid password"
]
}
但是我在这里无法打印错误信息。
try {
let headers = { ...};
let response = await axios.post(`${ROOT_URL}/.../`, {
old_password: currentPassword,
new_password1: passwordOne,
new_password2: passwordTwo,
}, {
headers
});
if (response.status ===200) {
dispatch({ type: CHANGE_PASSWORD_SUCCESS, payload: response.data });
}
callback();
} catch(error) {
console.log(error); <- [400 error] //but I can't read this!!
console.log('error');
console.log(error.data); //undefined
console.log(error.old_password); //undefined
callback2(error);
}
答案 0 :(得分:0)
console.log(error.response.data)
工作