VUE - 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法

Posted 武卡卡的个人博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE - 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法相关的知识,希望对你有一定的参考价值。

 created() {
    var that=this
    axios.get(‘http://jsonplaceholder.typicode.com/todos‘)
    .then(function (res) {
      // handle success
      // console.log(res);
      that.todos = res.data
    })
    .catch(function (error) {
      // handle error
      console.log(error);
    })
    .finally(function () {
      // always executed
    });
    },
}

 

以上是关于VUE - 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Vue2.0用axios得到的数据怎么绑定

vue路由变化时使用axios取消所有请求

vue表单提交怎么写

Vue3.x中全局绑定属性使用Axios和fetchJsonp请求真实api接口数据函数防抖实现百度搜索

vue中post请求报400的解决

vue-resource获取数据绑定src属性报错【已解决】