当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Collect.js whereNotIn()用法及代码示例


collect.js中的whereNotIn()方法用于根据键和值过滤给定集合中的元素。如果找到特定的键值集,则会将其过滤掉。

安装:

  • 在NodeJs中:
    npm install collect.js
  • 用于collect.js的CDN
    <script src="https://cdnjs.com/libraries/collect.js"></script>

用法:

whereNotIn(key, array_value);

参数:

  • key:要删除其值的 key 。
  • array_value:该键将要删除的值的数组。

返回值:它返回对象。



范例1:

Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
let obj1 = [ 
    { "a":1 }, 
    { "a":2 }, 
    { "a":3 }, 
    { "a":4 }, 
    { "b":5 } 
] 
  
// Making a collection 
let collection = collect(obj1); 
  
// Using whereNotIn() method to return 
// a collection not having value 2, 4 
// For key "a" 
let collectionFilter = collection 
            .whereNotIn("a", [2, 4]); 
  
console.log("Original collection is:", 
            collection.all()) 
              
console.log("Filtered collection is:",  
            collectionFilter.all());

输出:

范例2:

Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
  
let obj1 = [ 
    { "b":1 }, 
    { "c":2 }, 
    { "b":3 }, 
    { "b":4 }, 
    { "b":5 }, 
    { "c":11 }, 
    { "c":12 }, 
] 
  
// Making a collection 
let collection = collect(obj1); 
  
// Using whereNotIn() method to return  
// a collection not having value 1, 2, 4 
// For key "b" 
let collectionFilter =  
    collection.whereNotIn("b", [1, 2, 4]); 
  
collectionFilter =  
    collection.whereNotIn("c", [11]); 
  
console.log("Original collection is:",  
    collection.all()); 
  
console.log("The output will not contain "
        + "value of 1, 2, 4 for key \"b\""
        + " and value of 11 for key \"c\""); 
  
console.log("Filtered collection is:",  
        collectionFilter.all());

输出:

参考: https://collect.js.org/api/whereNotIn.html

相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Collect.js whereNotIn() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。