码迷,mamicode.com
首页 > 移动开发 > 详细

Vue使用axios无法读取data的解决办法

时间:2017-11-09 14:48:43      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:bsp   fine   define   efi   methods   数据   not   str   pre   

今天发现Vue中使用了axios后,then方法中无法读取到data中的数据了,总是提示 Cannot set property ‘xxx‘ of undefined

上网找了一圈后发现了一下解决方法。

 

解决办法1:

methods:{
    tap:function(){
        var self=this;
        axios.get(‘xxxxxx‘)
        .then(function(result){
            self.message=‘嘿嘿‘
        })
    }
}

 

解决办法2:

axios.get(‘xxxxxxxxxxx‘)
.then((result)=>{
    this.message=‘嘿嘿‘
})

Vue使用axios无法读取data的解决办法

标签:bsp   fine   define   efi   methods   数据   not   str   pre   

原文地址:http://www.cnblogs.com/Dengxiaobo/p/7808728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!