vue 카 트 가감 실현
보통 템 플 릿 에 표현 식 을 연결 합 니 다.템 플 릿 은 보기 구 조 를 설명 하 는 데 사 용 됩 니 다.템 플 릿 에 표현 식 이 너무 많은 논리 가 존재 하면 템 플 릿 이 비대 해 지고 유지 하기 가 어려워 집 니 다.따라서 논 리 를 간소화 하기 위해 특정한 속성의 값 이 다른 속성의 값 에 의존 할 때 우 리 는 계산 속성 을 사용 할 수 있다.
그러면 속성 을 계산 하 는 것 은 무엇 입 니까?
속성 을 계산 하 는 것 은 속성 에 의존 하 는 값 이 변 하면 이 속성의 값 은 자동 으로 업데이트 되 고 이와 관련 된 DOM 부분 도 동기 화 되 어 자동 으로 업데이트 된다 는 것 이다.
실 현 된 효과 도 는 다음 과 같다.
저 는 boottstrap 과 Vue 를 사용 해서 이 효 과 를 완 성 했 습 니 다.
우선 가방 가 져 오기:
<link rel="stylesheet" href="css/bootstrap.css" />
<script type="text/javascript" src="js/vue.js" ></script>
다음은 레이아웃 스타일:
<div id="app">
<div class="container">
<table class="table table-bordered table-hover">
<tr>
<td>
<input type="checkbox" v-model="checkAll" @click="selectAll" />
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr v-for="(item,index) in listInfo">
<td>
<input type="checkbox" :value="item.id" v-model="checkItem" @change="selectOne" />
</td>
<td>{{item.shopName}}</td>
<td>{{item.shopPrice}}</td>
<td>
<button class="btn btn-default" @click="reduce(index)">-</button>
<input type="text" v-model="item.shopCount" />
<button class="btn btn-default" @click="add(index)">+</button>
</td>
<td>
{{item.shopPrice*item.shopCount}}
</td>
<td>
<button class="btn btn-warning" @click="del(index)"> </button>
</td>
</tr>
</table>
<p class="text-right">
:{{sum}}
</p>
<p class="text-right">
:{{count}}
</p>
<hr />
<form>
<div class="form-group">
<input class="form-control" placeholder=" " v-model="shopName" />
</div>
<div class="form-group">
<input class="form-control" placeholder=" " v-model = "shopPrice"/>
</div>
<div class="form-group">
<button class="btn btn-primary" type="button" @click="addInfo"> </button>
</div>
</form>
</div>
</div>
마지막 으로 방법:
<script>
new Vue({
el:"#app",
data:{
listInfo:[
{id:1,shopName:" 1",shopPrice:1000,shopCount:0},
{id:2,shopName:" 2",shopPrice:2000,shopCount:0},
{id:3,shopName:" 3",shopPrice:3000,shopCount:0},
{id:4,shopName:" 4",shopPrice:4000,shopCount:0},
{id:5,shopName:" 5",shopPrice:5000,shopCount:0},
],
shopName:"",
shopPrice:"",
checkItem:[],
checkAll:false
},
methods:{
add:function(index){
this.listInfo[index].shopCount++
},
reduce:function(index){
if(this.listInfo[index].shopCount<=0){
this.listInfo[index].shopCount = 0
}else {
this.listInfo[index].shopCount--
}
},
del:function(index){
this.listInfo.splice(index,1)
},
addInfo:function(){
// alert(1)
var obj = {
id:this.listInfo.length+1,
shopName:this.shopName,
shopPrice:this.shopPrice,
shopCount:0
}
console.log(obj)
this.listInfo.push(obj)
},
selectAll:function(){
this.checkItem = []
if(!this.checkAll){
for (var i=0;i<this.listInfo.length;i++) {
this.checkItem.push(this.listInfo[i].id)
}
}else {
this.checkItem = []
this.checkAll = false
}
},
selectOne(){
console.log(this.checkItem)
if(this.checkItem.length == this.listInfo.length){
this.checkAll = true
}else {
this.checkAll = false
}
}
},
computed:{
sum(){
var total = 0
for (var i=0;i<this.listInfo.length;i++) {
total+=parseFloat(this.listInfo[i].shopPrice)*parseFloat(this.listInfo[i].shopCount)
}
return total
},
count:function(){
var total = 0
for (var i=0;i<this.listInfo.length;i++) {
total+=parseInt(this.listInfo[i].shopCount)
}
return total
}
}
})
</script>
이상 의 코드 를 통 해 간단 한 카 트 가감 과 추가 삭 제 를 실현 할 수 있 습 니 다!이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.