码迷,mamicode.com
首页 > Web开发 > 详细

Vue.js

时间:2019-06-21 11:07:01      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:数组   return   lis   基础知识   splice   spl   知识   pre   find   

一、Vue基础知识

1、怎么通过id查找索引

                this.list.some((item, i) => {
                    if (item.id == id) {
                        //在数组的 some 方法中,
                        this.list.splice(i, 1)
                        return true;
                    }
                })
                var index = this.list.findIndex(item => {
                    if (item.id == id) {
                        return true
                    }
                })

Vue.js

标签:数组   return   lis   基础知识   splice   spl   知识   pre   find   

原文地址:https://www.cnblogs.com/xpz-python/p/11063340.html

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