ant-design/components/auto-complete/index.zh-CN.md

31 lines
1003 B
Markdown
Raw Normal View History

2016-07-25 17:46:45 +08:00
---
category: Components
2016-09-21 11:28:38 +08:00
subtitle: 自动完成
2016-07-25 17:46:45 +08:00
type: Form Controls
cols: 1
2016-09-21 11:28:38 +08:00
title: AutoComplete
2016-07-25 17:46:45 +08:00
---
输入框自动完成功能。
## 何时使用
需要自动完成时。
## API
```jsx
const dataSource = ['12345', '23456', '34567'];
<AutoComplete dataSource={dataSource} />
```
| 参数 | 说明 | 类型 | 默认值 |
|----------------|----------------------------------|------------|---------|
| dataSource | 自动完成的数据源 | Array | |
2016-07-25 17:46:45 +08:00
| value | 指定当前选中的条目 | String/Array<String>/{key: String, label: React.Node}/Array<{key, label}> | 无 |
| defaultValue | 指定默认选中的条目 | String/Array<String>/{key: String, label: React.Node}/Array<{key, label}> | 无 |
| allowClear | 支持清除, 单选模式有效 | boolean | false |
| onChange | 选中 option或 input 的 value 变化时,调用此函数 | function(value) | 无 |
2016-09-21 11:28:38 +08:00
| disabled | 是否禁用 | boolean | false |