This time I will bring you a case analysis of vue2's implementation of shopping cart and address selection. What are theprecautionsfor vue2's implementation of shopping cart and address selection. The following is a practical case, let's take a look.
First of all, vue basic js writing method
new Vue({ el:"#app", //模型 data:{ }, filters:{ }, mounted:function(){ this.$nextTick(function(){ //初始化调用 }); }, computed:{ //实时计算 }, methods:{ } });
v-for
{{item.productName}}
v-model
(real-time update)
{{item.productQuantity}}
v-bind
filtersFilter Use of
#1.html reference method
{{item.productPrice | money('元')}}
filters:{ formatMoney:function(value,type){ return "¥"+value.toFixed(2)+ type; } },
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 real-time The calculationis as follows: three pieces of data are displayed by default, click more to display all
First put forward one or two classic examples
1. The following is implemented Click to select the loop card
2. The following implements the click to select the fixed card
标准配送
Free
高级配送
180
Digression: Since I am a novice, I will learn a little bit, and I will record the auxiliary pop-up box. How to write the mask layer
vue2’s js syntax is posted for easy reference
1. Call the backend method
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; });
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);//全局注册 } });
Recommended reading:
Vue implements search list content
##axios sends a post request to submit the image form step-by-step explanation
The above is the detailed content of Case analysis of shopping cart and address selection using vue2. For more information, please follow other related articles on the PHP Chinese website!