2016-11-02 17:35:05 +08:00
|
|
|
---
|
|
|
|
order: 11
|
|
|
|
title:
|
|
|
|
zh-CN: 自动分词
|
|
|
|
en-US: Automatic tokenization
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2021-03-09 09:07:37 +08:00
|
|
|
试下复制 `露西,杰克` 并粘贴到输入框里。只在 tags 和 multiple 模式下可用。
|
2016-11-02 17:35:05 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2021-03-09 09:07:37 +08:00
|
|
|
Try to copy `Lucy,Jack` and paste to the input. Only available in tags and multiple mode.
|
2016-11-02 17:35:05 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2016-11-02 17:35:05 +08:00
|
|
|
import { Select } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2022-09-19 18:01:16 +08:00
|
|
|
import type { SelectProps } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-09-19 18:01:16 +08:00
|
|
|
const options: SelectProps['options'] = [];
|
2016-11-02 17:35:05 +08:00
|
|
|
|
|
|
|
for (let i = 10; i < 36; i++) {
|
2022-09-19 18:01:16 +08:00
|
|
|
options.push({
|
|
|
|
value: i.toString(36) + i,
|
|
|
|
label: i.toString(36) + i,
|
|
|
|
});
|
2016-11-02 17:35:05 +08:00
|
|
|
}
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const handleChange = (value: string) => {
|
2016-11-02 17:35:05 +08:00
|
|
|
console.log(`selected ${value}`);
|
2022-05-19 09:46:26 +08:00
|
|
|
};
|
2016-11-02 17:35:05 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2022-09-19 18:01:16 +08:00
|
|
|
<Select
|
|
|
|
mode="tags"
|
|
|
|
style={{ width: '100%' }}
|
|
|
|
onChange={handleChange}
|
|
|
|
tokenSeparators={[',']}
|
|
|
|
options={options}
|
|
|
|
/>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|