--- order: 24 title: zh-CN: 校验其他组件 en-US: Other Form Controls --- ## zh-CN 以上演示没有出现的表单控件对应的校验演示。 ## en-US Demonstration of validation configuration for form controls which are not shown in the demos above. ```tsx import { Form, Select, InputNumber, Switch, Radio, Slider, Button, Upload, Icon, Rate, Checkbox, Row, Col, } from 'antd'; const { Option } = Select; const formItemLayout = { labelCol: { span: 6 }, wrapperCol: { span: 14 }, }; const normFile = e => { console.log('Upload event:', e); if (Array.isArray(e)) { return e; } return e && e.fileList; }; const Demo = () => { const onFinish = values => { console.log('Received values of form: ', values); }; return (
China machines item 1 item 2 item 3 item 1 item 2 item 3 A B C D E

Click or drag file to this area to upload

Support for a single or bulk upload.

); }; ReactDOM.render(, mountNode); ``` ```css #components-form-demo-validate-other .dropbox { height: 180px; line-height: 1.5; } ```