Lodash _.methodOf() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
Lodash _.methodOf() 方法创建一个函数,该函数在对象的给定路径调用该方法。任何附加参数都提供给调用的方法。
句法:
_.methodOf(object, args)
参数:此方法接受上面提到的两个参数,如下所述:
- object:这是要查询的对象。
- args:这些是调用方法的参数。
返回值:此方法返回新的调用函数。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.methodOf() method
var array = _.times(4, _.constant),
object =
{
'www': array,
'geeks': array,
'for': array ,
'geek':array
};
gfg = _.map(['geeks[1]',
'geek[2]'], _.methodOf(object));
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.methodOf() method
var array = _.times(4, _.constant),
object =
{
'www': array,
'geeks': array,
'for': array ,
'geek':array
};
gfg = _.map([['www', '1'], ['for',
'0']], _.methodOf(object));
// Printing the output
console.log(gfg);
输出:
[1, 2]
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.methodOf() method
var array = _.times(4, _.constant),
object =
{
'www': array,
'geeks': array,
'for': array ,
'geek':array
};
gfg = _.map([['www', '1'], ['for',
'0']], _.methodOf(object));
// Printing the output
console.log(gfg);
输出 :
[1, 0]