我正在尝试从另一个函数的 Axios 调用访问承诺值。
methods: {
checkItem() {
const url = "http://api.crossref.org/journals/" + this.editedItem.issn;
return axios.get(url)
.then(response => response.status);
},
save() {
console.log(this.checkItem());
}
}
我希望在调用save(). 目前,它正在记录整个承诺。
翻过高山走不出你
慕桂英4014372
相关分类