慕圣4152468
2019-11-09 01:37
为啥值赋不上去?
应该是你没有使用箭头函数导致的,导致函数内 this 作用域不同了,
两种解决方法,
1、换成 then( (response)=>{} )
2、init(){
let _this = this;
this.axios.get('xxxx').then(function(res){
_this.carList = res.data.data
})
}
可能是使用了保留字做变量名,换个变量名就好
基于Vue2.6开发商城核心页面
5508 学习 · 114 问题
相似问题