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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。