From 68c7d3cdaa7d958dbecb84ee62e46054136f9523 Mon Sep 17 00:00:00 2001 From: afc163 Date: Fri, 25 Mar 2016 14:24:04 +0800 Subject: [PATCH] update form doc --- components/form/index.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/form/index.md b/components/form/index.md index 7b6bebe9fb..18283267f3 100644 --- a/components/form/index.md +++ b/components/form/index.md @@ -81,7 +81,7 @@ CustomizedForm = Form.create({})(CustomizedForm); | getFieldError | 获取某个输入控件的 Error | Function(name) | | | | isFieldValidating | 判断一个输入控件是否在校验状态 | Function(name) | | | | resetFields | 重置一组输入控件的值与状态,如不传入参数,则重置所有组件 | Function([names: string[]]) | | | -| getFieldProps 详见下面描述 | | | | | +| getFieldProps | 用于和表单进行双向绑定,详见下方描述 | | | | #### this.props.form.getFieldProps(id, options) @@ -130,8 +130,9 @@ CustomizedForm = Form.create({})(CustomizedForm); #### Input.Group ```html - // 样式类名前缀,默认是 ant-input-group,通常您不需要设置。 - {children} + + + ```