這次為大家帶來vue2實現購物車與地址選配案例分析,vue2實現購物車與地址選配的注意事項有哪些,下面就是實戰案例,一起來看一下。
首先,vue基礎js寫法
new Vue({ el:"#app", //模型 data:{ }, filters:{ }, mounted:function(){ this.$nextTick(function(){ //初始化调用 }); }, computed:{ //实时计算 }, methods:{ } });
v-for
{{item.productName}}
# v-model
(即時更新)
{{item.productQuantity}}
v-bind
filters過濾器的使用
1.html引用方式
{{item.productPrice | money('元')}}
2.過濾器##
filters:{ formatMoney:function(value,type){ return "¥"+value.toFixed(2)+ type; } },
3.全域過濾器(寫在new 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"
computed 即時計算
如下:預設顯示三條數據,點擊more 顯示所有标准配送
Free
高级配送
180
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);//全局注册 } });
以上是vue2實現購物車與地址選配案例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!