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

detail: {
    get() {
      let detail
      const gameId = this.id
      querySingleGameDetail(gameId).then(response => {
        detail= response.data.data.detail//我们的结构就是这样的
      })
      return detail
    }
}
阅读 7.5k
2 个回答

在另一个问题下的评论里回复过你了。
正常来讲可以使用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
detail: {
    get() {
        let detail
        const gameId = this.id
        querySingleGameDetail(gameId).then(response => {
        detail= response.data.data.detail
        return detail
        })
    }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题