deleteProduct: function (index) {
this.productList.splice(index,1);
this.delFlag = false;
}很多同学说这个可以,其实只是当前索引在数组中删除是可以的,但是当前项的ID是需要传给后台删除的,id =this.curProduct.productId
this.productList.splice(index,1);
this.delFlag = false;
}很多同学说这个可以,其实只是当前索引在数组中删除是可以的,但是当前项的ID是需要传给后台删除的,id =this.curProduct.productId
2017-06-03
遇到2个问题,已解决:
1,Uncaught (in promise):没有使用localhost路径,而是直接打开网页cart.html
2,_this.totalMoney = response.body.result.totalMoney;
出现:Uncaught (in promise) TypeError: Cannot read property 'result' of undefined(…)
解决:将body改为data
1,Uncaught (in promise):没有使用localhost路径,而是直接打开网页cart.html
2,_this.totalMoney = response.body.result.totalMoney;
出现:Uncaught (in promise) TypeError: Cannot read property 'result' of undefined(…)
解决:将body改为data
2017-06-02
老师讲的很好,自己加了下单个商品与全选的联动。var allProduct= new Set();selectedProduct最后加if(item.checked == true) {vm.allProduct.add(item);if(vm.allProduct.size == vm.productList.length) {vm.checkAll(true);}}else{vm.allProduct.delete(item);vm.checkAllFlag = false;}
checkAll第一句代码后加if(flag == false){vm.allProduct.clear();}
checkAll第一句代码后加if(flag == false){vm.allProduct.clear();}
@半梦半醒君 点击新增弹出 模态框 填入相应数据,保存,请求后台插入数据,后台保存成功,返回个成功暗号,根据暗号向addressList也push一条进去(这条可以是后台返回也可以是你之前保存时静态储存下来的数据),
2017-05-31