码迷,mamicode.com
首页 > 其他好文 > 详细

Vue删除data列表中的项

时间:2017-03-10 16:25:03      阅读:1736      评论:0      收藏:0      [点我收藏+]

标签:amp   code   post   条目   成功   function   indexof   his   data   

下为异步删除购物车,并清空当前条目

 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为请求的的接口地址

Vue删除data列表中的项

标签:amp   code   post   条目   成功   function   indexof   his   data   

原文地址:http://www.cnblogs.com/cs88/p/6531072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!