recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - Comment supprimer les éléments d'un tableau correspondant dans JS?

var arr =  [

  {
    ServiceID: 'go-storage-127.0.0.1-8080-9090',
    ServiceName: 'storage',
    },
  {
    ServiceID: 'System-xxx-192.168.0.111-8000-8000',
    ServiceName: 'xxx',
    },
  {
    ServiceID: 'System-xxx2-192.168.0.111-8000-8000',
    ServiceName: 'xxx2',
     },
  {
    ServiceID: 'System-xxx3-192.168.0.111-8000-8000',
    ServiceName: 'xxx3',
     },
    {
        ServiceID: 'System2-xxx3-192.168.0.111-8000-8000',
        ServiceName: 'xxx3',
       },

    {
        ServiceID: 'test-xxx3-192.168.0.111-8000-8000',
        ServiceName: 'xxx3',
        }];
    将arr数组中ServiceID以test或者System开头的数组元素删掉
    用删掉的方法总是没法讲匹配到的全删,哪位高手能帮个忙呢?谢谢!
扔个三星炸死你扔个三星炸死你2718 Il y a quelques jours775

répondre à tous(3)je répondrai

  • 某草草

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

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

    répondre
    0
  • 怪我咯

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

    var startsWithArr = strArr => str => {
        return strArr.some(e => str.startsWith(e)); 
    }
    
    var starts = startsWithArr([
        'test',
        'System-'
    ]);
    
    var filterArr = arr => {
        arr.filter(e => !starts(e.ServiceID)); 
    }

    répondre
    0
  • 仅有的幸福

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

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

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

    répondre
    0
  • Annulerrépondre