# lodash update
该方法类似 _.set,除了接受 updater 以生成要设置的值。
概要
_.update(object, path, updater)
该方法类似 _.set
,除了接受 updater
以生成要设置的值。使用 _.updateWith
来自定义生成的新 path
。updater
调用 1 个参数:(value
)。
注意: 这个方法会改变 object
。
添加版本 4.6.0
参数
object (Object)
: 要修改的对象。path (Array|string)
: 要设置属性的路径。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
← _.unset _.updateWith →