搜索

首页  >  问答  >  正文

javascript - js如何将匹配到的数组元素删掉?

雷雷 雷雷
扔个三星炸死你扔个三星炸死你2718 天前773

全部回复(3)我来回复

  • 某草草

    某草草2017-06-19 09:09:51

    arr = arr.filter(item => !(/^test|^System/i.test(item.ServiceID)))

    回复
    0
  • 怪我咯

    怪我咯2017-06-19 09:09:51

    雷雷

    回复
    0
  • 仅有的幸福

    仅有的幸福2017-06-19 09:09:51

    Array.filter方法,将过滤后的数组赋值回arr

    arr = arr.filter(function(item) {
        return !(/^(test|System)/g.test(item.ServiceId || ''));
    });

    回复
    0
  • 取消回复