📜  Lodash _.invokeMap() 方法

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

Lodash _.invokeMap() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。

_.invokeMap()方法在集合中每个元素的给定路径调用方法,并返回每个调用方法的结果数组。可以使用args参数为每个调用的方法提供附加参数。给定的路径也可以是绑定到集合中每个元素的函数。

句法:

_.invokeMap( collection, path, args )

参数:此方法接受三个参数,如上所述,如下所述:

  • 集合:此参数保存必须迭代的集合。
  • path:此参数保存要调用的方法或每次迭代调用的函数的路径。
  • args:此参数保存用于调用每个方法的参数。

返回值:此方法返回结果数组。

示例 1:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
let obj = [[6, 2, 8], [2, 1, 0]];
   
// Using the _.invokeMap() method
let gfg1 = _.invokeMap(obj, 'sort');
  
// Printing the output 
console.log(gfg1);

输出:

[ [ 2, 6, 8], [ 0, 1, 2 ] ]

示例 2:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
let obj = [628, 210];
   
// Using the _.invokeMap() method 
let gfg1 = _.invokeMap(obj, String.prototype.split, '');
  
// Printing the output 
console.log(gfg1);

输出:

[ [ '6', '2', '8'], [ '2', '1', '0' ] ]

示例 3:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
let obj = ['srqp', 'tuvw'];
let obj1 = [ ['c', 'b', 'a'], ['f', 'e', 'd'] ];
   
// Using the _.invokeMap() method
let gfg = _.invokeMap(obj, String.prototype.split, '');
let gfg1 = _.invokeMap(obj1, 'sort');
  
// Printing the output 
console.log(gfg, gfg1);

输出:

[ [ 's', 'r', 'q', 'p'], [ 't', 'u', 'v', 'w' ] ]
[ [ 'a', 'b', 'c'], [ 'd', 'e', 'f' ] ]