美文网首页
vue 去除数组中重复的对象

vue 去除数组中重复的对象

作者: 安徒生1997 | 来源:发表于2021-09-26 17:16 被阅读0次

    arrUnique( list ) {

          var newArr= [];

          var arrId = [];

          for(let item of list){

            if(arrId.indexOf(item['text']) == -1){

              arrId.push(item['text']);

              newArr.push(item);

            }

          }

          return newArr;

        },

    相关文章

      网友评论

          本文标题:vue 去除数组中重复的对象

          本文链接:https://www.haomeiwen.com/subject/vjaqnltx.html