gpt4 book ai didi

javascript - VueJS/NuxtJs中如何动态调用axios方法

转载 作者:行者123 更新时间:2023-12-04 03:35:43 25 4
gpt4 key购买 nike

我正在尝试优化我的代码。因此,我动态地使用了 axios 函数,但返回的响应是待处理的 console log。我正在使用 async/await。任何人都可以帮助我。

这是我的代码:

methods: {
getAgentsNames() {
const data = this.callAxios('get', `/getAllAgents`)
console.log(data) // returns pending
this.agents = data.listings
},

async callAxios(method, url, paramsBody = null) {
try {
const response = await this.$axios({
method,
url,
params: paramsBody,
headers: this.headers,
})
console.log(response) // success and have response data.
if (response.data.status == 'ok') {
return response.data
} else {
ifNotOK(response, this.$cookies)
return null
}
} catch (error) {
console.log(error)
return null
}
},
},

最佳答案

您的 top 函数还需要等待调用返回:

async getAgentsNames() {
let data = await this.callAxios(

关于javascript - VueJS/NuxtJs中如何动态调用axios方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66978964/

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