mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
91821d4d3a
* feat: select edit demo to data driven * feat: edit demo to data driven Co-authored-by: 二货机器人 <smith3816@gmail.com>
57 lines
920 B
Markdown
57 lines
920 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 带搜索框
|
|
en-US: Select with search field
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
展开后可对选项进行搜索。
|
|
|
|
## en-US
|
|
|
|
Search the options while expanded.
|
|
|
|
```tsx
|
|
import { Select } from 'antd';
|
|
import React from 'react';
|
|
|
|
const onChange = (value: string) => {
|
|
console.log(`selected ${value}`);
|
|
};
|
|
|
|
const onSearch = (value: string) => {
|
|
console.log('search:', value);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Select
|
|
showSearch
|
|
placeholder="Select a person"
|
|
optionFilterProp="children"
|
|
onChange={onChange}
|
|
onSearch={onSearch}
|
|
filterOption={(input, option) =>
|
|
(option?.label ?? '').toLowerCase().includes(input.toLowerCase())
|
|
}
|
|
options={[
|
|
{
|
|
value: 'jack',
|
|
label: 'Jack',
|
|
},
|
|
{
|
|
value: 'lucy',
|
|
label: 'Lucy',
|
|
},
|
|
{
|
|
value: 'tom',
|
|
label: 'Tom',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|
|
```
|