res is not defined
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",{"id":123}).then(function(res){
_this.productList=res.data.result.list;
_this.totalMoney=res.data.result.totalMoney;
//_this.productList=res.body.result.list;
//_this.totalMoney=res.body.result.totalMoney;
})
}
}
})
res.data和res.body两种都试过还是不行,