最新回答 / CodingDog
建议看一下你vue-resourse官方文档再看一下你的配置,有可能需要配置一下才能是json对象想直接解决的话直接使用 JSON.parse(res.body.result.list) JSON化一下就好了不过不推荐使用vue-resourse了 因为尤大已经不再更新了 推荐使用axios
2017-07-24
最新回答 / Tom小伙
源码地址:https://github.com/Yfling/shoppingCart/tree/master/unitunit文件里面就是最初demo的html+css+图片资源的源码(没有添加vue),可以下载下来自己去做这个vue案例。你可以去下载。
2017-07-23
最新回答 / 俊崽爱枫妞
不能写成=,这个对象object只能写成totalMoney: 0 你这个总金额不该是写在html里的吗? <div class="cart-tab-4"> <div class="item-price-total">{{item.productPrice*item.productQuantity | filters1("元")}}</div> </div>
2017-07-10
最赞回答 / rao184908863
因为$http是异步的,所以取不到外面的vm,参考js里this的四种指向问题,像点击事件内部的this,定时器内部this都是取不到外面的this值的
2017-07-06
最新回答 / 吴彦祖的帅气
selectAll: function(isCheck) {this.checkAll = isCheck; //直接给全选参数赋值this.students.forEach(function(item) {if (typeof item.checked == "undefined") {Vue.set(item, "checked", isCheck); //这里传入的应该是isCheck,而不是true} else {item.checked = isCheck;}});},
2017-07-01