vue.js 단순 카 트 기능 실현
이번 에는 vue.js 가 카 트 를 실현 하 는 작은 프로젝트 를 가 져 다 드 리 겠 습 니 다.부족 하 다 면 엄 격 히 지적 해 주세요.
카 트 기능 은 일부 상품 을 선택 하고 선택 하 며 상품 의 총 가격 계산,상품 제거,구 매 수량 조정 등 기능 이 있다.
js 는 주로 다음 과 같은 방법 이 있다.
함수 추가,감 함수,수 동 수정 수량 판단 재고 함수,총 가격 계산 함수,단일 이벤트,전체 이벤트,총 6 개 이벤트 로 나 뉜 다.
구체 적 인 효 과 는 아래 그림 과 같다.
코드 여기 있 습 니 다.
main.js
'use strict'
var app = new Vue({
el: '#app',
data: {
list: [
{
id: 1,
name: 'iPhone 7',
price: 6188,
count: 1,
check: true,
},
{
id: 2,
name: 'iPad Pro',
price: 5888,
count: 1,
check: false,
},
{
id: 3,
name: 'MacBook Pro',
price: 21488,
count: 1,
check: true,
},
]
},
methods: {
remove: function (index) { //
this.list.splice(index, 1);
},
reduce: function (index) { //
this.list[index].count --;
},
add: function (index) { //
this.list[index].count ++;
},
selAll: function () { //
let isAll = document.querySelector('#all');
if (isAll.checked == true) {
this.list.forEach(function(item, index) {
item.check = true;
})
} else {
this.list.forEach(function(item, index) {
item.check = false;
})
}
}
},
computed: {
totalPrices: function () { //
let totalPrices = 0;
this.list.forEach(function (val, index) {
if (val.check == true)
totalPrices += parseFloat(val.price * val.count);
})
return totalPrices.toString().replace(/\B(?=(\d{3})+$)/g, ','); // ‘,'
}
}
})
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="main.css" >
</head>
<body>
<div id="app" v-cloak>
<template v-if="list.length">
<table>
<thead>
<tr>
<th> <input id="all" @click="selAll" type="checkbox" checked></th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<template v-for="(item, index) in list">
<tr>
<td>
<input type="checkbox" :checked="item.check" @click="item.check = !item.check">
</td>
<td>
{{ item.name }}
</td>
<td>
{{ item.price }}
</td>
<td>
<button @click="reduce(index)" :disabled="item.count == 1">-</button>
{{ item.count }}
<button @click="add(index)">+</button>
</td>
<td>
<button @click="remove(index)"> </button>
</td>
</tr>
</template>
</tbody>
</table>
<div> : ¥ {{ totalPrices }}</div>
</template>
<template v-else>
</template>
</div>
<script src="vue.js"></script>
<script src="main.js"></script>
</body>
</html>
main.css
[v-cloak] {
display: none;
}
#app {
width: 500px;
margin: 0 auto;
}
table {
width: 100%;
border: 1px solid #444;
border-collapse: collapse;
}
th, td {
padding: 8px 16px;
border: 1px solid #444;
text-align: left;
}
th {
background: #89abd3;
color: rgb(214, 224, 235);
font-weight: 600;
white-space: nowrap;
}
더 많은 글 은Vue.js 전단 구성 요소 학습 튜 토리 얼을 클릭 하여 읽 기 를 배 울 수 있다.vue.js 구성 요소 에 대한 튜 토리 얼 은 주제vue.js 구성 요소 학습 강좌를 클릭 하여 학습 하 십시오.
더 많은 vue 학습 튜 토리 얼 은 주 제 를 읽 으 세 요《vue 실전 교정》.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[백견불여일타/Vue.js] 4장 - 입력 폼 데이터 가져오기v-model 데이터 입력 select 지난 장에서는 v-bind를 이용해서 HTML 태그 속성 값을 Vue로 다루는 법을 배웠습니다. 이번에는 사용자가 입력한 데이터를 Vue로 가져오는 법에 대해 다룹니다. 웹 페...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.