gpt4 book ai didi

javascript - 最终回调中的 axios 响应对象未定义

转载 作者:行者123 更新时间:2023-11-29 18:44:55 24 4
gpt4 key购买 nike

我在我的一个 Vue.js 项目中使用 axios。无论 API 调用失败还是完成,我都在执行一些操作。我开始了解 finnaly() 方法。它在 API 请求失败或成功后执行。 但是我没有在最后给出的回调中得到响应对象。

例如:

axios()
.then((response) => {
console.log(response); // response object defined
//handle response on success
return response
}).finally((response) => {
console.log(response); // response object undefined
});

最佳答案

Promise.finally 方法不给回调参数

阅读 MDN [ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/finally ]

您可以再次使用 .then 来获取响应。

关于javascript - 最终回调中的 axios 响应对象未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54569243/

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