为了账号安全,请及时绑定邮箱和手机立即绑定

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两种都试过还是不行,

正在回答

3 回答

你是引用老师的json文件吗?如果是的话应该写成cartData.json

0 回复 有任何疑惑可以回复我~

在mounted加个this.$nextTick方法,你可以点开body看看里面的结构,在进行解析

0 回复 有任何疑惑可以回复我~

vue2.0中mounted好像不能保证到有vue实例了,在mounted加个this.$nextTick方法试试呢~

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
使用vue2.0实现购物车和地址选配功能
  • 参与学习       96865    人
  • 解答问题       446    个

本视频教程结合案例完整贯穿各个知识点,轻松玩转vue2.0框架

进入课程

res is not defined

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信