我正在使用Parse,并注意到ParseObject支持“increment(propertyName)”,这对于数字属性非常有用。假设我有一个名为“MyProp”的属性为Object的属性,所以它看起来像这样:
{
stats: {
counter1: 500,
counter2: 600,
counter3: 700
},
...
}
是否可以以原子方式在MyProp属性中增加counter1?例如像object.increment(“myProp.stats.counter1”)?神奇的东西?