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