Lodash _.partialRight() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.partialRight()方法用于创建一个函数,该函数调用给定的func函数,并将附加部分附加到它接收的参数中。它与 _.partial()函数几乎相同。
句法:
_.partialRight( func, partials )
参数:此方法接受上面提到的两个参数,如下所述:
- func:此参数保存要部分应用参数的函数。
- partials:此参数保存要部分应用的参数。它是一个可选参数。
返回值:此方法返回新的部分应用函数。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given Function
function info(information, name) {
console.log(information + ' ' + name);
}
// Using the _.partialRight() method
var call_gfg =
_.partialRight(info,
'is a computer science portal');
call_gfg('GeeksforGeeks');
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given Function
function info(information, name) {
console.log(information + ' ' + name);
}
// Using the _.partialRight() method
// with placeholders
var say_gfg =
_.partialRight(info, 'Hello', _);
say_gfg('geeks');
输出:
'GeeksforGeeks is a computer science portal'
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given Function
function info(information, name) {
console.log(information + ' ' + name);
}
// Using the _.partialRight() method
// with placeholders
var say_gfg =
_.partialRight(info, 'Hello', _);
say_gfg('geeks');
输出:
'Hello geeks'