Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Object” Methods

_.update(object, path, updater)

该方法类似_.set,除了接受updater以生成要设置的值。使用 _.updateWith来自定义生成的新pathupdater调用1个参数:(value)

Note: 这个方法会改变 object

添加版本

4.6.0

参数

  1. object (Object): 要修改的对象。
  2. path (Array|string): 要设置属性的路径。
  3. updater (Function): 用来生成设置值的函数。

返回

(Object): 返回 object

例子

var object = { 'a': [{ 'b': { 'c'3 } }] };
 
_.update(object, 'a[0].b.c', function(n) { return n * n; });
console.log(object.a[0].b.c);
// => 9
 
_.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; });
console.log(object.x[0].y.z);
// => 0

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods