fix: avoid infinite loop (#3089)
This commit is contained in:
parent
641d59421d
commit
e5f711ec66
@ -138,14 +138,14 @@ const WithForm = (props: WithFormProps) => {
|
|||||||
variables,
|
variables,
|
||||||
localVariables,
|
localVariables,
|
||||||
});
|
});
|
||||||
// 如果是 linkageRules 数组的最后一个元素
|
|
||||||
if (index === linkageRules.length - 1) {
|
if (index === linkageRules.length - 1) {
|
||||||
// 清空 linkagefields 数组中对象的属性
|
// 如果不在这里使用 setTimeout 会在某些未知情况下导致死循环,原因未知
|
||||||
|
setTimeout(() => {
|
||||||
linkagefields.forEach((v) => {
|
linkagefields.forEach((v) => {
|
||||||
v.linkageProperty = {};
|
v.linkageProperty = {};
|
||||||
});
|
});
|
||||||
// 清空 linkagefields 数组
|
|
||||||
linkagefields.length = 0;
|
linkagefields.length = 0;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user