@2890594972
2017-10-26T00:44:10.000000Z
字数 263
阅读 763
vue
接口: data/home.json
普通回调函数
var _this = this;
this.$http.get('/static/data/home.json').then(function(res){
//此时this指向window
_this.list = res.body.xxx
});
箭头函数
this.$http.get('/static/data/home.json').then((res)=>{
this.list = res.body.xxx
})
数据在哪里调用?
created