📜  Lodash _.iteratee() 方法

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

Lodash _.iteratee() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。 iteratee方法创建一个函数,该函数使用创建的函数的参数调用 func 。如果 func 是属性名称,则创建的函数返回给定元素的属性值。如果 func 是一个数组或对象,则创建的函数对于包含等效源属性的元素返回 true,否则返回 false。

句法:

_.iteratee([func=_.identity])

参数:此方法接受一个如上所述和如下所述的参数:

  • [func=_.identity]:要转换为回调的值。

返回: [函数] 返回回调。

示例 1:

// Requiring the lodash library  
const _ = require("lodash"); 
  
// Use of _.iteratee() method     
var info = [
  { 'company': 'Geeksforgeeks', 'Location': 'Noida', 'active': true },
  { 'company': 'Google',   'Location': 'California', 'active': true }
];
  
let gfg = _.filter(info, _.iteratee({ 'Location': 'Noida' }));
  
// Printing the output  
console.log(gfg)

注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

输出:

[Object {Location: "Noida", active: true, company: "Geeksforgeeks"}]

示例 2:

// Requiring the lodash library  
const _ = require("lodash");  
  
// Use of _.iteratee() method     
var user = [
  { 'name': 'XXXX', 'age': 36, 'active': true },
  { 'name': 'YYYY',   'age': 40, 'active': false },
  { 'name': 'ZZZZ',   'age': 40, 'active': true }
];
  
let gfg = _.map(user, _.iteratee('name'));
  
// Printing the output  
console.log(gfg)

注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

输出:

["XXXX", "YYYY", "ZZZZ"]