已采纳回答 / qq_往事不堪回首_4
item.productQuantity作为一个整体参数传入函数之后,修改的只是这个整体的数值,并没有真正改变item对象的productQuantity属性
2018-05-29
get请求cartData.json时候会报错,这是跨域问题,同学们可以在本机用iis搭建一个服务器站点,具体的教程可以去搜下,然后用localhost来访问
2018-05-25
最赞回答 / qq_与我无关N_0
selectedProduct: function(item){ if(typeof item.checked == 'undefined'){ Vue.set(item,"checked",true); // 局部注册 // this.$set(item,"checked",true); }else{ item.checked = !item.checked; } var itemisChecked = []; this.productList.forEach...
2018-05-20
官方推荐使用Axio,老师没有介绍created勾子函数,这个函数内就不用在computed函数中调用了:
created:function(){
axios.get('data/address.json').then(response=>{
if (response.status=='200') {
this.addressList = response.data.result;
}
console.log(response)
}).catch(error=>{
console.log(error)
})
}
created:function(){
axios.get('data/address.json').then(response=>{
if (response.status=='200') {
this.addressList = response.data.result;
}
console.log(response)
}).catch(error=>{
console.log(error)
})
}
代码分享:https://github.com/wuln/vue-demos/tree/master/shoppingCart-vue2.0
有需要的同学可自行下载~~
有需要的同学可自行下载~~
2018-05-14