ant-design/components/mention/demo/controlled.md

90 lines
2.1 KiB
Markdown
Raw Normal View History

---
order: 4
2016-09-23 10:14:57 +08:00
title:
zh-CN: 配合 Form 使用
en-US: With Form
---
## zh-CN
受控模式,例如配合 Form 使用。
## en-US
Controlled mode, for example, to work with `Form`.
2019-05-07 14:57:32 +08:00
```jsx
import { Mention, Form, Button } from 'antd';
2018-06-27 15:55:04 +08:00
const { toContentState, getMentions } = Mention;
const FormItem = Form.Item;
class App extends React.Component {
2017-02-20 21:47:57 +08:00
state = {
initValue: toContentState('@afc163'),
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
handleReset = e => {
e.preventDefault();
this.props.form.resetFields();
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
handleSubmit = e => {
e.preventDefault();
this.props.form.validateFields((errors, values) => {
2016-08-23 21:00:35 +08:00
if (errors) {
2018-07-29 00:58:10 +08:00
console.log('Errors in the form!!!');
return;
}
console.log('Submit!!!');
console.log(values);
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
checkMention = (rule, value, callback) => {
const { getFieldValue } = this.props.form;
const mentions = getMentions(getFieldValue('mention'));
if (mentions.length < 2) {
callback(new Error('More than one must be selected!'));
} else {
callback();
}
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
render() {
const { getFieldDecorator, getFieldValue } = this.props.form;
console.log('>> render', getFieldValue('mention') === this.state.initValue);
2016-07-21 15:40:13 +08:00
return (
2017-03-06 17:51:45 +08:00
<Form layout="horizontal">
2016-07-21 15:40:13 +08:00
<FormItem
id="control-mention"
label="Top coders"
2016-07-21 15:40:13 +08:00
labelCol={{ span: 6 }}
2017-03-19 00:19:11 +08:00
wrapperCol={{ span: 16 }}
2016-07-21 15:40:13 +08:00
>
{getFieldDecorator('mention', {
2019-05-07 14:57:32 +08:00
rules: [{ validator: this.checkMention }],
initialValue: this.state.initValue,
})(
<Mention
2018-12-18 18:32:21 +08:00
defaultSuggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}
2019-05-07 14:57:32 +08:00
/>,
)}
2016-07-21 15:53:33 +08:00
</FormItem>
2016-07-21 15:40:13 +08:00
<FormItem wrapperCol={{ span: 14, offset: 6 }}>
2019-05-07 14:57:32 +08:00
<Button type="primary" onClick={this.handleSubmit}>
Submit
</Button>
2016-07-21 15:40:13 +08:00
&nbsp;&nbsp;&nbsp;
2017-02-04 22:35:33 +08:00
<Button onClick={this.handleReset}>Reset</Button>
2016-07-21 15:40:13 +08:00
</FormItem>
</Form>
);
}
}
2017-02-20 21:40:24 +08:00
const FormDemo = Form.create()(App);
2016-07-21 15:40:13 +08:00
2017-02-20 21:40:24 +08:00
ReactDOM.render(<FormDemo />, mountNode);
2019-05-07 14:57:32 +08:00
```