--- order: 4 title: zh-CN: 配合 Form 使用 en-US: With Form --- ## zh-CN 受控模式,例如配合 Form 使用。 ## en-US Controlled mode, for example, to work with `Form`. ```tsx import { Mention, Form, Button } from 'antd'; const { toContentState, getMentions } = Mention; const FormItem = Form.Item; const App = () => { const [form] = Form.useForm(); const checkMention = (rule, value, callback) => { const mentions = getMentions(form.getFieldValue('mention')); if (mentions.length < 2) { callback(new Error('More than one must be selected!')); } else { callback(); } }; const onReset = () => { form.resetFields(); }; const onFinish = values => { console.log('Submit:', values); }; return (
); }; ReactDOM.render(