📜  Collect.js 除非Empty()函数

📅  最后修改于: 2022-05-13 01:56:39.558000             🧑  作者: Mango

Collect.js 除非Empty()函数

Collect.js是用于处理数组和对象的流畅且方便的包装器。 unlessEmpty ()函数在集合不为空时执行回调函数。

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

npm install --save collect.js

句法:

collection.unlessEmpty(callback)

参数:该函数只接受一个参数,即集合不为空时执行的回调函数。

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

示例 1:文件名-index.js

Javascript
// Requiring module
const collect = require('collect.js')
  
// User defined collection
var myCollection = [1, 2]
  
// Creating collection object
const collection = collect(myCollection);
  
// Callback execution since collection
// object is not empty
collection.unlessEmpty(item => item.push(3));
  
// Printing collection
console.log(collection.all());


Javascript
// Requiring module
const collect = require('collect.js')
  
// User defined collection
var myCollection = []
  
// Creating collection object
const collection = collect(myCollection);
  
// No callback execution since
// collection is not empty
collection.unlessEmpty((item) => {
  item.push(1)
  item.push(2)
});
  
// Printing collection
console.log(collection.all());


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

node index.js

输出:

[ 1, 2, 3 ]

示例 2:文件名-index.js

Javascript

// Requiring module
const collect = require('collect.js')
  
// User defined collection
var myCollection = []
  
// Creating collection object
const collection = collect(myCollection);
  
// No callback execution since
// collection is not empty
collection.unlessEmpty((item) => {
  item.push(1)
  item.push(2)
});
  
// Printing collection
console.log(collection.all());

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

node index.js

输出:

[ ]

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