VUE axios all()使用返回值报错

发布于 2022-09-05 14:54:29 字数 556 浏览 10 评论 0

data(){

  return {
    tabledata: [],
    oftenGoods: [],
  }
},
created: function () {
  axios.all([
    axios.get('test1.php'),
    axios.get('test2.php')
  ]).then(axios.spread(function(oftenResp, typeResp) {
        console.log(oftenResp.data);
        console.log(typeResp.data);
       
        this.tabledata= typeResp.data
    }))
    .catch(error=>{
      console.log(error);
    })
},


返回的两个响应数据都能拿到, 打印也是成功的
 this.tabledata= typeResp.data  //这句赋值的时候报错TypeError: Cannot read property 'tabledata' of null
 
 
 

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

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

发布评论

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

评论(1

负佳期 2022-09-12 14:54:29

// this.tabledata= typeResp.data 你把这一句写在哪里

我大概明白了,

then(axios.spread(function(oftenResp, typeResp) {
        console.log(oftenResp.data);
        console.log(typeResp.data);
       
        this.tabledata= typeResp.data
    }))
    
    改成
    
    then(axios.spread((oftenResp, typeResp) => {
    console.log(oftenResp.data);
    console.log(typeResp.data);
   
    this.tabledata= typeResp.data
}))

如果支持 ES6语法,的话,哪就
var _that = this
.....

...
_that.tabledata= typeResp.data
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文