gpt4 book ai didi

javascript - 访问 promise 值 axios

转载 作者:行者123 更新时间:2023-12-01 00:48:28 26 4
gpt4 key购买 nike

我正在尝试从另一个函数的 Axios 调用访问 promise 值。

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() 时将状态代码记录在控制台中。目前,它正在记录整个 promise 。

最佳答案

您可以使用async/await

<script>
new Vue({
el: "#root",

methods: {
checkItem() {
const url = "http://api.crossref.org/journals/" + this.editedItem.issn;
return axios.get(url).then(response => response.status);
}
},
async save() {
console.log(await this.checkItem());
}
});
</script>

或者使用Promise:

<script>
new Vue({
el: "#root",

methods: {
checkItem() {
const url = "http://api.crossref.org/journals/" + this.editedItem.issn;
return axios.get(url).then(response => response.status);
}
},
save() {
this.checkItem().then(res => {
console.log(res);
});
}
});
</script>

关于javascript - 访问 promise 值 axios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57188998/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com