在听老师讲之前自己先动手实现了删除功能,我的做法基本和老师的一样,不过我的代码比老师的少了几行。因为我给删除函数传的是index而不是item,在for-in里就可以得到该item在数组中的索引的,为什么不直接用,还有再用indexof,所以有时考虑得还是不是太周到,所以互相学习吧
2017-04-12
基于源码,采用vue2.0+axios+vue-router+全ES6写法,写完了整个项目,Github地址:https://github.com/SinHide/shopping-cart.git 欢迎pull和star
2017-04-12
最新回答 / 慕慕0740142
可以自己写这部分,在selectedProduct这个方法里面加:selectedProduct: function (product) { if (typeof product.isChecked === 'undefined') { Vue.set(product, 'isChecked', true) } else { product.isChecked = !product.isChecked } var every = this.productList.every(f...
2017-04-12