错误:cart.js:24 Uncaught (in promise) TypeError: Cannot read property 'list' of undefined
代码: cartView:function(){
var _this=this;
this.$http.get("./static/data/cartData.json").then(function(res){
_this.productList=res.data.result.list;
});
},
求解决
代码: cartView:function(){
var _this=this;
this.$http.get("./static/data/cartData.json").then(function(res){
_this.productList=res.data.result.list;
});
},
求解决
2017-09-01
data中cartData.json请求不到的,放入static目录中就可以的,this.$http.get("/static/data/cartData.json").then(function(res){
_this.productsList=res.body.result.list;
_this.totalMoney=res.body.result.totalMoney;
})
感谢前面的幕友提供
_this.productsList=res.body.result.list;
_this.totalMoney=res.body.result.totalMoney;
})
感谢前面的幕友提供
2017-08-31
这里有个bug,只有点击单选时候才会调用函数计算总金额,那么我点击全选按钮时候是不会触发计算总金额计算的。所以应该再全选事件里也绑定计算函数。
2017-08-31
干净源码和完成课程后的 [含注释代码] 地址:https://github.com/SD-Gaming/Vue2.0-ShoppingCart-MOOC
希望能帮到大家,求右上角star~
希望能帮到大家,求右上角star~
2017-08-31
干净源码和完成课程后的 [含注释代码] 地址:https://github.com/SD-Gaming/Vue2.0-ShoppingCart-MOOC
希望能帮到大家,求右上角star~
希望能帮到大家,求右上角star~
2017-08-31
干净源码和完成课程后的 [含注释代码] 地址:https://github.com/SD-Gaming/Vue2.0-ShoppingCart-MOOC
希望能帮到大家,求右上角star~
希望能帮到大家,求右上角star~
2017-08-31
大家自己做这个例子的时候注意三点:1.千万别用resours这个插件!这个插件发送请求时就收到的body里面不含有任何数据,也就不可能实现这个案例了,这个插件已经没有被维护了,所以有很多问题,大家最好去用axios,那个也很简单,直接<script src="https://unpkg.com/axios/dist/axios.min.js"></script>这个引入,这样使用: axios.get("").then()
2.不是res.body而是res.data。
3.这个json必须在本地配置静态服务器才行,用sublime的同学去下载个sublimeServer插件就行了,很简单。
2.不是res.body而是res.data。
3.这个json必须在本地配置静态服务器才行,用sublime的同学去下载个sublimeServer插件就行了,很简单。
2017-08-30