下为异步删除购物车,并清空当前条目
1 cartDel: function (item) { 2 let _this = this; 3 _this.confirm("确认删除吗?", function () { 4 _this.axios.post(cartDel, qs.stringify({ 5 ‘cart_id‘: item.cart_id 6 })).then(function (res) { 7 // console.log(res) 8 if (res.data.code == 200 && res.data.datas == 1) { 9 // console.log(_this.cart_list.indexOf(item)) 10 var index = _this.cart_list.indexOf(item) 11 _this.cart_list.splice(index, 1) 12 13 14 } 15 }) 16 }, 17 function () { 18 _this.toast("取消成功") 19 20 } 21 ) 22 23 },
axios.post中的cartDel为请求的的接口地址
时间: 2024-10-06 00:54:21