lodash中的Function的_.wrap()方法用於創建一個函數,該函數像其初始參數一樣將值傳遞給指定的包裝器。此外,傳遞給該函數的任何其他參數都將添加到傳遞給所述包裝器的參數中。
注意:
- 此處使用的包裝器通過所形成函數的this綁定進行調用。
用法:
_.wrap(value, [wrapper=identity])
參數:此方法接受上麵提到和下麵描述的兩個參數:
- value:它是要包裝的值。
- wrapper:它是包裝器函數。
返回值:此方法返回新函數。
以下示例說明了JavaScript中的Lodash _.wrap()方法:
範例1:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Calling wrap() method with its parameter
var res = _.wrap(_.escape, function(functn, txt) {
return '<b>' + functn(txt) + '</b>';
});
// Assigning values
res('GfG, geeks, & GeeksforGeeks');
輸出:
<b>GfG, geeks, & GeeksforGeeks</b>
範例2:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Calling wrap() method with its parameter
var newfn = _.wrap(_.upperCase, function(x, y) {
return x(y)
});
// Assigning values
newfn("geeksforgeeks");
輸出:
GEEKSFORGEEKS
相關用法
- Collect.js wrap()用法及代碼示例
- JQuery wrap()用法及代碼示例
- underscore.js _.wrap()用法及代碼示例
- 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()用法及代碼示例
- Lodash _.clone()用法及代碼示例
- Lodash _.sampleSize()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Lodash _.wrap() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。