请问怎么获取返回的Promise对象里面的数据

在vue项目中写一个公共的js,并全局引用了:
const Get = function (url) {

return new Promise((resolve, reject) => {
  axios.get(url).then(function (response) {
    resolve(response.data)
  })
  .catch(function (err) {
    alert('调用接口失败!')
  })
})

}
export default{

Get,

}

使用时返回:
图片描述

请问我想取到里面的数据怎么做?先谢谢了…………

阅读 44.3k
2 个回答
import Get from '路径'

Get().then(data => {
    // data就是resolve的response.data
})

推荐使用 async await

const Get = async url => {
    let res = await axios.get(url)
    return res
}

res中获取

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题