vue2.0实现购物车功能
时间: 2023-08-09 18:09:14 浏览: 116
要实现购物车功能,需要以下步骤:
1. 创建一个商品列表,包含每个商品的名称,价格和数量。
2. 在页面上展示商品列表,每个商品都有一个加入购物车的按钮。
3. 点击加入购物车按钮时,将对应商品的信息加入购物车列表中。
4. 在页面上展示购物车列表,包含每个商品的名称,价格,数量和小计金额。
5. 可以对购物车中的商品进行删除或修改数量操作。
6. 计算购物车中所有商品的总价。
下面是一个简单的 Vue 2.0 实现购物车功能的示例代码:
HTML:
```
<div id="app">
<h2>商品列表</h2>
<ul>
<li v-for="item in goods">
{{ item.name }} - {{ item.price }}元
<button @click="addToCart(item)">加入购物车</button>
</li>
</ul>
<h2>购物车</h2>
<table>
<thead>
<tr>
<th>名称</th>
<th>单价</th>
<th>数量</th>
<th>小计</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in cart">
<td>{{ item.name }}</td>
<td>{{ item.price }}元</td>
<td>
<input type="number" v-model="item.quantity" min="1">
</td>
<td>{{ item.price * item.quantity }}元</td>
<td>
<button @click="removeFromCart(index)">删除</button>
</td>
</tr>
</tbody>
</table>
<p>总价:{{ totalPrice }}元</p>
</div>
```
JavaScript:
```
new Vue({
el: '#app',
data: {
goods: [
{ name: '商品1', price: 10, quantity: 1 },
{ name: '商品2', price: 20, quantity: 1 },
{ name: '商品3', price: 30, quantity: 1 }
],
cart: []
},
methods: {
addToCart(item) {
let index = this.cart.findIndex(cartItem => cartItem.name === item.name)
if (index !== -1) {
this.cart[index].quantity++
} else {
this.cart.push({
name: item.name,
price: item.price,
quantity: 1
})
}
},
removeFromCart(index) {
this.cart.splice(index, 1)
}
},
computed: {
totalPrice() {
return this.cart.reduce((total, item) => total + item.price * item.quantity, 0)
}
}
})
```
在这个示例中,首先定义了一个商品列表和一个购物车列表,其中商品列表包含了每个商品的名称、价格和数量,购物车列表为空。在页面上展示商品列表时,为每个商品添加了一个加入购物车的按钮,并在点击按钮时调用 `addToCart` 方法将对应商品信息加入购物车列表中。在页面上展示购物车列表时,使用了一个表格来展示每个商品的名称、价格、数量和小计金额,并为每个商品添加了一个删除按钮,同时使用了一个计算属性来计算购物车中所有商品的总价。最后,在 `addToCart` 方法中还实现了判断购物车中是否已存在该商品的逻辑,如果存在则将对应商品的数量加 1,否则将该商品添加到购物车列表中。在 `removeFromCart` 方法中通过 `splice` 方法实现了删除购物车列表中的商品的逻辑。
阅读全文