Partoo
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/Form/src/hooks/useFormEvents.ts
|
|
|
@ -66,7 +66,7 @@ export function useFormEvents({ |
|
|
|
|
|
|
|
// key 支持 a.b.c 的嵌套写法
|
|
|
|
const delimiter = '.'; |
|
|
|
const nestKeyArray = fields.filter((item) => item.indexOf(delimiter) >= 0); |
|
|
|
const nestKeyArray = fields.filter((item) => String(item).indexOf(delimiter) >= 0); |
|
|
|
|
|
|
|
const validKeys: string[] = []; |
|
|
|
Object.keys(values).forEach((key) => { |
|
|
|
|