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']
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Collect.js whenEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。