이 글에서는 주로 vue2를 사용하여 장바구니 구현과 주소 선택 기능을 소개하고 있는데, 필요한 친구들은 참고하시면 됩니다.
먼저, Vue 기본 js 작성 방법
new Vue({ el:"#app", //模型 data:{ }, filters:{ }, mounted:function(){ this.$nextTick(function(){ //初始化调用 }); }, computed:{ //实时计算 }, methods:{ } });
v-for
<li v-for="(item,index) in productList"> <p class="item-name">{{item.productName}}</p> </li>
v-model
(실시간 업데이트)
<input type="text" value="0" disabled v-model="item.productQuantity"> <p class="item-price-total">{{item.productQuantity}}</p>
v-bind
<a href="javascript:;" class="item-check-btn" v-bind:class="{'check':item.checked}"> <!--可通过更改item.checked的值设置是否选中--> <!--必须用v-bind 不可直接在class里面直接使用{{}}--> <!--v-bind:class= 可简写为 :class= -->
필터 사용법
1.html 참조 Method
<p class="item-price">{{item.productPrice | money('元')}}</p>
2. Filter
filters:{ formatMoney:function(value,type){ return "¥"+value.toFixed(2)+ type; } },
3. 전역 필터(새 Vue 외부에 작성)
Vue.filter("money",function(value,type){ return "¥"+value.toFixed(2) + type; //保留两位小数 结果eg:¥19.00元 });
메소드에서 메소드 호출:
@click="method(param)" //或者 @click="delFlag=false" @click="limitNum=addressList.length"
계산된 실시간 계산
다음과 같이 기본적으로 세 개의 데이터가 표시됩니다. 모두 표시하려면 더보기를 클릭하세요.
<li v-for="(item,index) in filterAddress"> <p class="shipping-addr-more"> <a class="addr-more-btn up-down-btn" href="javascript:" @click="limitNum=addressList.length"> more <i class="i-up-down"> <i class="i-up-down-l"></i> <i class="i-up-down-r"></i> </i> </a> </p> data:{ limitNum:3 }, computed:{ filterAddress:function(){ return this.addressList.slice(0,this.limitNum); } },
먼저 하나 또는 두 개의 전형적인 예를 제시하겠습니다
1 다음은 원형 카드의 클릭 선택을 구현합니다
<li v-for="(item,index) in filterAddress" v-bind:class="{'check':index==currentIndex}" @click="currentIndex=index"> <!--其中currentIndex在js里需要定义-->
. 2. 다음은 고정 카드의 클릭 선택을 구현합니다
<ul> <li v-bind:class="{'check':shippingMethod==1}" @click="shippingMethod=1"> <p class="name">标准配送</p> <p class="price">Free</p> </li > <li v-bind:class="{'check':shippingMethod==2}" @click="shippingMethod=2"> <p class="name">高级配送</p> <p class="price">180</p> </li> </ul> <!--其中shippingMethod在js里需要定义-->
주제 외: 초보자이므로 조금 배우고 보조 팝업 상자 마스크 레이어의 작성 방법을 기록하겠습니다
<p class="md-overlay" v-if="delFlag"></p>
Vue2의 js 구문은 쉽게 참조할 수 있도록 게시되었습니다.
1. End 메서드를 호출한 후
var _this = this; this.$http.get("data/address.json").then(function(response){ _this.addressList = response; //这里不能直接用this 此this非彼this 所以只能声明_this }); //以下为ES6写法,就可以直接用this了 let _this = this; //没用,就放这看看~ this.$http.get("data/cartData.json",{"id":123}).then(res=>{ this.productList = res.data.result.list; });
2. forEach 루프
this.productList.forEach(function(item,index){ if(typeof item.checked == 'undefined'){ //如果item中没有checked属性 在item对象中添加checked属性,值为true _this.$set(item,"checked",true);//局部注册 Vue.set(item,"checked",true);//全局注册 } });
위 내용은 모두에게 도움이 되기를 바랍니다. 앞으로도 다들.
관련 기사:
Angular 5.x Study Notes Router 애플리케이션
vuex 프로젝트 구조 디렉토리 및 몇 가지 간단한 구성 소개의 차이점에 대한 자세한 설명
위 내용은 vue2를 사용하여 장바구니 및 주소 선택 기능 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!