【优化】全局:动态表单的注释、error log 打印

This commit is contained in:
YunaiV
2024-05-06 22:51:26 +08:00
parent 41cbabcf88
commit 0222eef6b5
4 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import {toNumber} from 'lodash-es'
import { toNumber } from 'lodash-es'
/**
*
@ -445,7 +445,7 @@ export function jsonParse(str: string) {
try {
return JSON.parse(str)
} catch (e) {
console.log(`str[${str}] 不是一个 JSON 字符串`)
console.error(`str[${str}] 不是一个 JSON 字符串`)
return ''
}
}