作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究使用 Redux Form 的 React-TypeScript 项目。
其中一个组件在类型定义中使用了 InjectedFormProps
。
const Container: React.SFC<Props & InjectedFormProps<{}, Props>> = (props: Props & InjectedFormProps<{}, Props>) => {
return <> </>;
}
谁能详细解释一下 InjectedFormProps
在幕后做了什么?
最佳答案
export interface InjectedFormProps<FormData = {}, P = {}, ErrorType = string> {
anyTouched: boolean;
array: InjectedArrayProps;
asyncValidate(): void;
asyncValidating: string | boolean;
autofill(field: string, value: any): void;
blur(field: string, value: any): void;
change(field: string, value: any): void;
clearAsyncError(field: string): void;
destroy(): void;
dirty: boolean;
error: ErrorType;
form: string;
handleSubmit: SubmitHandler<FormData, P, ErrorType>;
initialize(data: Partial<FormData>): void;
initialized: boolean;
initialValues: Partial<FormData>;
invalid: boolean;
pristine: boolean;
reset(): void;
submitFailed: boolean;
submitSucceeded: boolean;
submitting: boolean;
touch(...field: string[]): void;
untouch(...field: string[]): void;
valid: boolean;
warning: any;
registeredFields: { [name: string]: RegisteredField };
}
关于reactjs - redux-form 中的 InjectedFormProps 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55718990/
我正在研究使用 Redux Form 的 React-TypeScript 项目。 其中一个组件在类型定义中使用了 InjectedFormProps。 const Container: React.
我是一名优秀的程序员,十分优秀!