提交 e1a747a2 编写于 作者: Q qiang

fix: 移除 for of 用法

上级 37b00394
......@@ -185,7 +185,8 @@ let UTSJSONObject$1 = class UTSJSONObject {
return null;
}
let value = this;
for (let key of keyPathArr) {
for (let i = 0; i < keyPathArr.length; i++) {
let key = keyPathArr[i];
if (value instanceof Object) {
value = value[key];
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册