mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-05 23:46:28 +08:00

* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
68 lines
1.3 KiB
Markdown
68 lines
1.3 KiB
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic Usage
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基本使用,通过 `options` 设置自动完成的数据源。
|
|
|
|
## en-US
|
|
|
|
Basic Usage, set data source of autocomplete with `options` property.
|
|
|
|
```tsx
|
|
import React, { useState } from 'react';
|
|
import { AutoComplete } from 'antd';
|
|
|
|
const mockVal = (str: string, repeat = 1) => ({
|
|
value: str.repeat(repeat),
|
|
});
|
|
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState('');
|
|
const [options, setOptions] = useState<{ value: string }[]>([]);
|
|
|
|
const onSearch = (searchText: string) => {
|
|
setOptions(
|
|
!searchText ? [] : [mockVal(searchText), mockVal(searchText, 2), mockVal(searchText, 3)],
|
|
);
|
|
};
|
|
|
|
const onSelect = (data: string) => {
|
|
console.log('onSelect', data);
|
|
};
|
|
|
|
const onChange = (data: string) => {
|
|
setValue(data);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<AutoComplete
|
|
options={options}
|
|
style={{ width: 200 }}
|
|
onSelect={onSelect}
|
|
onSearch={onSearch}
|
|
placeholder="input here"
|
|
/>
|
|
<br />
|
|
<br />
|
|
<AutoComplete
|
|
value={value}
|
|
options={options}
|
|
style={{ width: 200 }}
|
|
onSelect={onSelect}
|
|
onSearch={onSearch}
|
|
onChange={onChange}
|
|
placeholder="control mode"
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|