fix: 修复前端两个不同数据类型的判断引起的缺陷

修复前端两个不同数据类型的判断引起的缺陷
This commit is contained in:
song-tianyang 2021-06-04 10:42:42 +08:00 committed by 刘瑞斌
parent 1516949ffc
commit 17b24f20b1
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@
}
}
//
for (let i in nodeArray) {
for (let i = 0;i < nodeArray.length;i++) {
if (!nodeArray[i]) {
continue;
}