computed能和axios组合使用吗?应该怎么用啊,我return axios获取的数据老是undefined

发布于 2022-09-06 22:21:47 字数 240 浏览 15 评论 0

detail: {
    get() {
      let detail
      const gameId = this.id
      querySingleGameDetail(gameId).then(response => {
        detail= response.data.data.detail//我们的结构就是这样的
      })
      return detail
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

话少情深 2022-09-13 22:21:47

在另一个问题下的评论里回复过你了。
正常来讲可以使用async和await将异步请求转化为同步的写法

// 像这样
async get () {
    var result = await getDetails(this.param)
    return result
}

但是computed里好像禁止使用这个东西,拿不到正确的return的值,所以还是用watch吧。


在eslint-plugin-vue里找到了一些说明

Computed properties should be synchronous(计算属性需要是同步的). Asynchronous actions inside them may not work as expected and can lead to an unexpected behaviour, that's why you should avoid them. If you need async computed properties you might want to consider using additional plugin vue-async-computed

可爱咩 2022-09-13 22:21:47
detail: {
    get() {
        let detail
        const gameId = this.id
        querySingleGameDetail(gameId).then(response => {
        detail= response.data.data.detail
        return detail
        })
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文