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
.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 的解决办法的主要内容,如果未能解决你的问题,请参考以下文章