getKey
获取fieldKey相对uiSchema、dataSchema路径。
使用场景:配合dispatch 设置表单ui配置、校验配置。
type GetKey = (
fieldKey: string,
type: 'uiSchema' | 'dataSchema' | 'data' | 'unitedSchema'
) => string
获取表单相对uiSchema的配置
getKey(xxx,'uiSchema')
获取表单相对dataSchema的配置
getKey(xxx,'dataSchema')
获取表单相对unitedSchema的配置
getKey(xxx,'unitedSchema')