给定以下Vue方法,使用Axios调用API来获取一些数据:
fetch: function() {
console.log('Commence call to API!');
axios.get("fetch.php")
.then(response => {
if (response.status === 204) {
this.noContent = true;
} else {
console.log(response.data);
}
});
console.log('Method complete!');
},
控制台输出中的预期应如下所示:
相反,经常发生的事情如下:
如何确保方法以“顺序”方式运行?