我在Axios上使用VueJ(和Vuex)与Express Api进行通信。我可以删除自己的使用服务的用户帐户
import api from '@/services/api.js';
export default {
deleteAccount: () => api().delete('/users')
};
其中api
是axios
实例。我不需要传递用户ID,因为api通过令牌识别用户。
在我的设置视图中,我可以使用此服务
<script>
import { mapActions } from 'vuex';
import UserService from '@/services/users';
export default {
name: 'Settings',
methods: {
...mapActions('alert', [
'showSuccessAlert',
'showErrorAlert'
])
deleteAccount: async function() {
try {
await UserService.deleteAccount();
this.showSuccessAlert({ message: 'Account was deleted successfully' });
// other stuff
} catch (error) {
this.showErrorAlert({ message: error.message });
}
}
}
};
</script>
呼叫UserService.deleteAccount()
会给我一个未完成的承诺。使用await
会返回api响应。
当前,api始终返回500
用于测试。我认为,如果Promise被拒绝,代码将始终直接跳转到catch块中。在这里,代码返回一个被拒绝的Promise(并向控制台写入“内部服务器错误”,但是传递并显示成功警报,/从不执行catch块中的代码。
代码有什么问题?我误会了诺言吗?
更新
我的axios实例
import axios from 'axios';
import TokensService from '@/services/tokens.js';
import store from '@/store/store.js';
function getTokenString() {
return `Bearer ${TokensService.getToken()}`;
}
export default () => {
const instance = axios.create({
baseURL: 'http://localhost:3000/',
headers: {
'Content-Type': 'application/json',
Authorization: getTokenString(),
},
});
instance.interceptors.request.use((config) => {
config.headers.Authorization = getTokenString();
return config;
}, (err) => Promise.reject(err));
instance.interceptors.response.use((res) => res, (err) => {
if (err.response.status === 401) {
store.dispatch('authentication/destroySession');
store.dispatch('alert/showErrorAlert', { message: err.message });
}
return err;
});
return instance;
};
呼叫api().delete()
与axios.delete('http://localhost:3000/users')
答案 0 :(得分:2)
尝试在此处返回被拒绝的承诺
instance.interceptors.response.use((res) => res, (err) => {
if (err.response.status === 401) {
store.dispatch('authentication/destroySession');
store.dispatch('alert/showErrorAlert', { message: err.message });
}
return Promise.reject(err);
});