<temlate>
{{aaa.xxx}}
</template>
///////////////////// 实际代码 //////////////////////////////
data() {
return() {
aaa: null
}
},
methods: {
var self = this;
$.get('www.com', function(res){
self.aaa = res.data;
})
}
/**
ajax res 结构:
res: {
xxx: 111,
yyy: 222,
zzz: 333
}
**/
按照如上代码写的话就会出现 Cannot read property 'xxxx' of undefined
vue 1.0 是不会出现这样的错误的。
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…