mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
4518b02095
#### FEATURES * use `ContentState` instead of `EditorState`, selection events won't trigger onChange anymore. * deprecated `Mention.toEditorState`, instead of `Mention.toContentState`, * `Mention.toEditorState` are compatibled, but have a warnning in console. #### ISSUES * `disabled` and `readOnly` props supported. * fixed controlled mode bug. * close #5788 * close #5175 * close #https://github.com/react-component/editor-mention/issues/7
38 lines
624 B
Markdown
38 lines
624 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基本使用
|
|
|
|
## en-US
|
|
|
|
Basic usage.
|
|
|
|
````jsx
|
|
import { Mention } from 'antd';
|
|
const { toString, toContentState } = Mention;
|
|
|
|
function onChange(contentState) {
|
|
console.log(toString(contentState));
|
|
}
|
|
|
|
function onSelect(suggestion) {
|
|
console.log('onSelect', suggestion);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<Mention
|
|
style={{ width: '100%', height: 100 }}
|
|
onChange={onChange}
|
|
defaultValue={toContentState('@afc163')}
|
|
suggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}
|
|
onSelect={onSelect}
|
|
/>
|
|
, mountNode);
|
|
````
|