mapKeys
_.mapKeys(object, [iteratee=_.identity])
反向版 _.mapValues
。 这个方法创建一个对象,对象的值与源对象相同,但 key 是通过 iteratee
产生的。
参数
object (Object)
要遍历的对象
[iteratee=_.identity] (Function|Object|string)
这个函数会处理每一个元素
返回值 (Object)
返回映射后的新对象
示例
_.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {
return key + value;
});
// => { 'a1': 1, 'b2': 2 }