ant-design/components/mention/demo/controllder-simple.md

50 lines
748 B
Markdown
Raw Normal View History

---
order: 3
title:
zh-CN: 受控模式
en-US: Controlled
---
## zh-CN
受控模式.
## en-US
Controlled mode.
2017-02-13 10:55:53 +08:00
````jsx
import { Mention } from 'antd';
2018-06-27 15:55:04 +08:00
const { toContentState } = Mention;
class App extends React.Component {
2017-02-20 21:47:57 +08:00
state = {
value: toContentState('@afc163'),
}
2018-06-27 15:55:04 +08:00
componentDidMount() {
this.mention.focus();
}
2018-06-27 15:55:04 +08:00
handleChange = (editorState) => {
this.setState({
value: editorState,
});
}
2018-06-27 15:55:04 +08:00
render() {
return (
<Mention
ref={ele => this.mention = ele}
suggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}
value={this.state.value}
onChange={this.handleChange}
/>
);
2017-02-20 22:09:13 +08:00
}
2017-02-20 22:11:39 +08:00
}
ReactDOM.render(<App />, mountNode);
````