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


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


Collect.js是用于处理数组和对象的流利且便捷的包装器。这个whenNotEmpty()函数当集合不为空时执行回调函数。

安装:使用以下命令安装Collect.js模块:

npm install --save collect.js

用法:

collection.whenNotEmpty(callback)

参数:此函数仅接受一个参数,即如果集合不为空则执行的回调函数。

返回值:此函数返回新的集合对象。



范例1:Filename-index.js

Javascript

// Requiring module 
const collect = require('collect.js') 
  
// User defined collection 
var myCollection = [ 
    'Good Morning',  
    'Good Evening',  
    'Good Afternoon'
] 
  
// Creating collection object 
const collection = collect(myCollection); 
  
// Function call for single insertion 
collection.whenNotEmpty(item => item.push('Good Night')); 
  
// Printing collection 
console.log(collection.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 'Good Morning', 'Good Evening', 'Good Afternoon', 'Good Night' ]

示例2:Filename-index.js

Javascript

// Requiring module 
const collect = require('collect.js') 
  
// User defined collection 
var myCollection = ['One', 'Two', 'Three'] 
  
// Creating collection object 
const collection = collect(myCollection); 
  
// Function call for multiple insertion 
collection.whenNotEmpty((item) => { 
  item.push('Four') 
  item.push('Five') 
  item.push('Six') 
}); 
  
// Printing collection 
console.log(collection.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 'One', 'Two', 'Three', 'Four', 'Five', 'Six' ]

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

相关用法


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