外观
按规则设置对象的值。
uni.$c.setObjValue(obj|arr, path, value)
const obj = { a: { b: 1, c: [{ d: 2, e: 3 }] } } uni.$c.setObjValue(obj, 'a.c.0.e', 'test'); console.log(uni.$c.getObjValue(obj, 'a.c.0.e')); // test
obj
path
value