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


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


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

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

npm install --save collect.js

用法:

collection.whenEmpty(callback)

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

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



范例1:Filename-index.js

Javascript

// Requiring module 
const collect = require('collect.js') 
  
// User defined collection 
var myCollection = [] 
  
// Creating collection object 
const collection = collect(myCollection); 
  
// Callback exection since collection object is empty 
collection.whenEmpty(item => item.push('Greetings')); 
  
// Printing collection 
console.log(collection.all());

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

node index.js

输出:

[ 'Greetings' ]

示例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); 
  
// No callback execution since collection is not empty 
collection.whenEmpty((item) => { 
  item.push('Four') 
  item.push('Five') 
  item.push('Six') 
}); 
  
// Printing collection 
console.log(collection.all());

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

node index.js

输出:

[ 'One', 'Two', 'Three']

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

相关用法


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