ant-design/components/mentions/index.zh-CN.md
zombieJ ecb2eb6ede
feat: Add Mentions component (#16532)
* init

* first demo

* support empty

* add loading support

* add form sample

* update form sample

* omit value & defaultValue

* add 2 rest demo

* placement support

* update docs

* fix test

* update docs

* add test case

* fix lint

* follow textarea style

* update docs style
2019-05-17 12:05:03 +08:00

1.9 KiB

category subtitle type title
Components 提及 数据录入 Mentions

提及组件。

原 Mention 组件已废弃,原文档请点击这里

何时使用

用于在输入中提及某人或某事,常用于发布、聊天或评论功能。

API

<Mention
  onChange={onChange}
  suggestions={['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai']}
/>

API

<Mentions onChange={onChange}>
  <Mentions.Option value="sample">Sample</Mentions.Option>
</Mentions>

Mention

参数 说明 类型 默认值
autoFocus 自动获得焦点 boolean false
defaultValue 默认值 string -
filterOption 自定义过滤逻辑 false | (input: string, option: OptionProps) => boolean -
notFoundContent 当下拉列表为空时显示的内容 ReactNode 'Not Found'
placement 弹出层展示位置 'top' | 'bottom' 'bottom'
prefix 设置触发关键字 string | string[] '@'
split 设置选中项前后分隔符 string ' '
validateSearch 自定义触发验证逻辑 (text: string, props: MentionsProps) => void -
value 设置值 string -
onChange 值改变时触发 (text: string) => void -
onSelect 选择选项时触发 (option: OptionProps, prefix: string) => void -
onSearch 搜索时触发 (text: string, prefix: string) => void -
onFocus 获得焦点时触发 () => void -
onBlur 失去焦点时触发 () => void -

Mention 方法

名称 描述
blur() 移除焦点
focus() 获取焦点

Option

参数 说明 类型 默认值
children 选项内容 ReactNode -
value 选择时填充的值 string ''