Underscore.js具有非常有用的map功能。
map
_.map([1, 2, 3], function(num){ return num * 3; }); => [3, 6, 9] _.map({one: 1, two: 2, three: 3}, function(num, key){ return num * 3; }); => [3, 6, 9]
我正在寻找可以迭代嵌套对象或深层映射的类似功能。经过大量搜索后,我无法真正找到它。我所能找到的是 采摘 深层对象的东西,但没有遍历深层对象的每个值。
像这样:
deepMap({ one: 1, two: [ { foo: 'bar' }, { foos: ['b', 'a', 'r', 's'] }, ], three: [1, 2, 3] }, function(val, key) { return (String(val).indexOf('b') > -1) ? 'bobcat' : val; })
一个人怎么做?
{ one: 1, two: [ { foo: 'bobcat' }, { foos: ['bobcat', 'a', 'r', 's'] }, ], three: [1, 2, 3] }
这是使用转换的Lodash解决方案
function deepMap(obj, iterator, context) { return _.transform(obj, function(result, val, key) { result[key] = _.isObject(val) /*&& !_.isDate(val)*/ ? deepMap(val, iterator, context) : iterator.call(context, val, key, obj); }); } _.mixin({ deepMap: deepMap });