对于成功更新204状态代码的密码,它在响应获取中捕获了异常,请让我知道在这里做什么
fetch(`${AUTH_CONFIG.apiUrl}/user/changepassword`, requestOptions)
.then(handleResponse)
.then(data => {
NotificationManager.success('Password Updated Successfully!');
})
.catch(err => {
NotificationManager.error(err.responseStatus.message);
});
错误:未处理的拒绝(TypeError):无法读取未定义的属性“消息”