--- order: 10 title: zh-CN: 校验提示 en-US: Validation message --- ## zh-CN 我们为表单控件定义了三种校验状态,为 `` 定义 `validateStatus` 属性即可。 validateStatus: 'success', 'warning', 'error', 'validating'。 另外为输入框添加反馈图标,设置 `` 的 `hasFeedback` 属性值为 `true` 即可。 **注意**: 反馈图标只对 `` 有效。 ## en-US We provide three kinds of validation status for form. You can use it just define `validateStatus` property on ``. validateStatus: 'success', 'warning', 'error', 'validating'。 To set `hasFeedback` property to `true` enable to display feed icon of input control. **PS**: Feed icon is just available for ``. ````jsx import { Form, Input, DatePicker, Col } from 'antd'; const FormItem = Form.Item; ReactDOM.render(

-

, mountNode); ````