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' ]
相关用法
- 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 whenNotEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。