控制台报这个错误是什么原因?
先贴代码:
var vm = new Vue({
el:"#app",
data:{
totalMoney:0,
productList:[]
},
filters:{
},
mounted:function(){
this.cartView();
},
methods:{
cartView:function(){
var _this = this;
this.$http.get("data/cart.json").then(function (res){
_this.productList = res.body.result.productList;
_this.totalMoney = res.body.result.totalMoney;
});
}
}
});
报错如下: