判断axios请求是否完成
Determine if Axios request is done
有什么方法可以确定像下面这样的 Axios 请求是否收到答复并已完成?
axios.get('/api')
.then(response => this.data = response.data);
是的,这是一个承诺,您可以参考并then
它:
var req = axios.get('/api')
.then(response => this.data = response.data);
现在我想对它的完成做出反应:
req.then(x => console.log("Done!"));
或在外部保存该状态:
var isReqDone = false;
req.then(x => isReqDone = true);
有什么方法可以确定像下面这样的 Axios 请求是否收到答复并已完成?
axios.get('/api')
.then(response => this.data = response.data);
是的,这是一个承诺,您可以参考并then
它:
var req = axios.get('/api')
.then(response => this.data = response.data);
现在我想对它的完成做出反应:
req.then(x => console.log("Done!"));
或在外部保存该状态:
var isReqDone = false;
req.then(x => isReqDone = true);