Lodash _.fix()方法fix根據值和參數的存在定義的參數模板將函數的參數ixes_占位符。
該函數采用給定值中用_代替的參數。
用法:
_.fix( fun, [values] )
參數:此方法采用上麵列出和下麵討論的單個參數。
- fun:此參數保留給定的函數。
- values:值傳遞給了樂趣。
返回值:它返回一個新函數。
注意:要執行以下示例,必須使用此命令提示符安裝lodash-contrib庫,並執行以下命令。
npm install lodash-contrib
範例1:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function
function mul(a, b, c, d){
return a*b*c*d;
}
// Making curried function
var gfgFunc = _.fix(mul, 1, 2, 3, _);
// 8 is replaced by _ in given values
console.log("Multiplication is:", gfgFunc(8));
輸出:
Multiplication is:48
範例2:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function
function add(a, b, c){
return a + b + c;
}
// Making fixed function
var gfgFunc = _.fix(add, 1, 2, _);
console.log("Addition is:", gfgFunc(10));
輸出:
Addition is:13
範例3:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Function
function fun(str){
return str;
}
// Making fixed function
var gfgFunc = _.fix(fun, _);
console.log("Coding Platform:",
gfgFunc("GeeksforGeeks"));
輸出:
Coding Platform:GeeksforGeeks
相關用法
- underscore.js _.fix()用法及代碼示例
- Lodash _.method()用法及代碼示例
- Lodash _.sneq()用法及代碼示例
- Lodash _.toQuery()用法及代碼示例
- Lodash _.uniqWith()用法及代碼示例
- Lodash _.xorWith()用法及代碼示例
- Lodash _.head()用法及代碼示例
- Lodash _.remove()用法及代碼示例
- Lodash _.pullAt()用法及代碼示例
- Lodash _.pullAll()用法及代碼示例
- Lodash _.pull()用法及代碼示例
- Lodash _.nth()用法及代碼示例
- Lodash _.takeRight()用法及代碼示例
- Lodash _.take()用法及代碼示例
- Lodash _.sortedLastIndex()用法及代碼示例
- Lodash _.fromPairs()用法及代碼示例
- Lodash _.differenceWith()用法及代碼示例
- Lodash _.castArray()用法及代碼示例
- Lodash _.cloneDeep()用法及代碼示例
注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Lodash _.fix() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。