Lodash是一個JavaScript庫,可在underscore.js頂部使用。 Lodash幫助處理數組,集合,字符串,lang,函數,對象,數字等。
_.transform()方法是_.reduce()方法的替代方法,該方法將對象轉換為新的累加器對象,這是通過迭代運行其自己的每個可枚舉字符串鍵屬性的結果,每次調用都可能會使累加器對象發生變化。如果未提供累加器,則將使用具有相同原型的新對象。
用法:
_.transform(object, iteratee, accumulator)
參數:此方法接受上述和以下所述的三個參數:
- object:它持有要迭代的對象。
- iteratee:該方法是每個元素的每次迭代調用的函數。
- accumulator:它保存自定義累加器值。
返回值:此方法返回累加值。
範例1:在這裏,const _ = require(‘lodash’)用於將lodash庫導入文件中。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var object = [12, 13, 14];
// Using the _.trnasform() method
let st_elem = _.transform(object,
function(result, n) {
result.push(n *= n);
return n % 2 == 0;
}, []);
// Printing the output
console.log(st_elem);
輸出:
144, 169
範例2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var object = { 'p':3, 'q':6, 'r':3 };
// Using the _.trnasform() method
let st_elem = _.transform(object,
function(result, value, key) {
(result[value] || (result[value] = [])).push(key);
}, {});
// Printing the output
console.log(st_elem);
輸出:
{ '3':['p', 'r'], '6':['q'] }
注意:該代碼在常規JavaScript中不起作用,因為它需要安裝庫lodash。
相關用法
- HTML canvas transform()用法及代碼示例
- node.js Stream transform.destroy()用法及代碼示例
- CSS transform-origin用法及代碼示例
- CSS text-transform屬性用法及代碼示例
- CSS transform屬性用法及代碼示例
- HTML Style transform用法及代碼示例
- CSS transform-style用法及代碼示例
- Collect.js transform()用法及代碼示例
- d3.js zoom.transform()用法及代碼示例
- d3.js transform.toString()用法及代碼示例
- d3.js transform.invert()用法及代碼示例
- Lodash _.method()用法及代碼示例
- Lodash _.uniqWith()用法及代碼示例
- Lodash _.xorWith()用法及代碼示例
- Lodash _.head()用法及代碼示例
- Lodash _.remove()用法及代碼示例
- Lodash _.pullAt()用法及代碼示例
- Lodash _.pullAll()用法及代碼示例
注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.transform() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。