未验证 提交 87ee7cd2 编写于 作者: Y yaoyylm 提交者: GitHub

处理(Warning 'Use of eval is strongly discouraged')警告 (#2424)

上级 ce030d2d
...@@ -93,7 +93,7 @@ export function useFormEvents({ ...@@ -93,7 +93,7 @@ export function useFormEvents({
} else { } else {
nestKeyArray.forEach((nestKey: string) => { nestKeyArray.forEach((nestKey: string) => {
try { try {
const value = eval('values' + delimiter + nestKey); const value = nestKey.split('.').reduce((out, item) => out[item], values);
if (isDef(value)) { if (isDef(value)) {
formModel[nestKey] = value; formModel[nestKey] = value;
validKeys.push(nestKey); validKeys.push(nestKey);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册