发现一个逻辑上的错误:假设用户全选了商品列表,然后又删除其中一个商品,在delProduct函数运行完后,由于没有重新计算总价格,也就是调用calcTotalPrice,导致了在全选后在删除其中的一件商品,会使的总金额计算错误
2017-02-13
昨天刚踩了2.0的$index的坑。搞了半天!在vue2.0 v-for中index索引的值获取方式是(item,index) in items的方式获取
2017-02-12
讲师回答 / 河畔一角
指的就是Vue本身,因为Vue对象有很多属性、过滤器和函数,得到实例对象后,就可以调用它的所有api .就好比:String.prototype.trim = function(){ return this.replace(" ",""); // this 指的就是 当前调用的对象字符串本身}
2017-02-12
加v-model="item.productQuentity"报了这个错:
[Vue warn]: <input v-model="item.productQuentity" value="0">:
inline value attributes will be ignored when using v-model. Declare initial values in the component's data option instead.
[Vue warn]: <input v-model="item.productQuentity" value="0">:
inline value attributes will be ignored when using v-model. Declare initial values in the component's data option instead.
2017-02-12