Collect.js only() 方法
only() 方法用于返回具有指定键的给定集合中的项目。它将键作为参数并返回与该键映射的项目。
句法:
collect(array).only(key)
参数: collect() 方法接受一个转换为集合的参数,然后只应用 () 方法。 only() 方法将密钥作为参数保存。
返回值:此方法返回具有指定键的给定集合中的项目。
模块安装:使用以下命令从项目的根目录安装collect.js模块:
npm install collect.js
下面的示例说明了 collect.js 中的 only() 方法:
示例 1:文件名:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Sample values array
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
// Creating collection object
const collection = collect(arr);
// Function call
const only_val = collection.only([2, 5, 25]);
// Printing the values
console.log(only_val.all());
Javascript
// Requiring the module
const collect = require('collect.js');
// Creating collection object
const collection = collect({
name: 'Rahul',
dob: '25-10-96',
section: 'A',
score: 98,
});
// Function call
const only_val = collection.only(['name', 'dob']);
// Printing the values
console.log(only_val.all());
使用以下命令运行index.js文件:
node index.js
输出:
[ 2, 5 ]
示例 2:文件名:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Creating collection object
const collection = collect({
name: 'Rahul',
dob: '25-10-96',
section: 'A',
score: 98,
});
// Function call
const only_val = collection.only(['name', 'dob']);
// Printing the values
console.log(only_val.all());
使用以下命令运行index.js文件:
node index.js
输出:
{ name: 'Rahul', dob: '25-10-96' }