今回は、vue2でショッピングカートと住所選択を実装する手順について詳しく説明します。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 参照メソッド
<p class="item-price">{{item.productPrice | money('元')}}</p>
2. フィルター
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"
リアルタイム計算
は次のとおりです: デフォルトでは 3 つのデータが表示されます。すべてを表示するには、[もっと見る] をクリックしてください
<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 つまたは 2 つの古典的な例を提示します
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.バックエンドメソッドを呼び出します
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);//全局注册 } });
をマスターしていると思います編この記事の事例を読んだ後にその方法を説明してください。さらに興味深い情報については、PHP 中国語 Web サイトの他の関連記事に注目してください。
推奨読書:
Vue の親コンポーネントの子コンポーネントのメソッドの呼び出しの概要
Vue のグローバル コンポーネントとローカル コンポーネントの使用手順の詳細な説明
以上がvue2でショッピングカートと住所選択を実装する手順を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。