使用vue.js进行开发购物车,把商品push到购物车的数组中,在大多数设备上是没问题的,但是在一台iphone6 plus 上出现每次push 都会直接push 进去两个,这个应该是什么引起的呢。
state.goods.push({
id: product.id,
is_whole: product.is_whole,
name: product.name,
headImg: product.headImg,
number: 1,
price: product.price
})
使用vuex,是在是不知道到底是哪里的问题了。
这个问题已经解决了,问题详细描述和解决方案请移步 vue computed 使用小问题