mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 08:19:37 +08:00
eee3b50727
* feat: support icon only with segmented * fix: lint issue * chore: update * test: fix * test: update snapshot
44 lines
788 B
Markdown
44 lines
788 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 动态数据
|
|
en-US: Dynamic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
动态加载数据。
|
|
|
|
## en-US
|
|
|
|
Load `options` dynamically.
|
|
|
|
```tsx
|
|
import React, { useState } from 'react';
|
|
import { Segmented, Button } from 'antd';
|
|
|
|
const defaultOptions = ['Daily', 'Weekly', 'Monthly'];
|
|
|
|
const Demo: React.FC = () => {
|
|
const [options, setOptions] = useState(defaultOptions);
|
|
const [moreLoaded, setMoreLoaded] = useState(false);
|
|
|
|
const handleLoadOptions = () => {
|
|
setOptions([...defaultOptions, 'Quarterly', 'Yearly']);
|
|
setMoreLoaded(true);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Segmented options={options} />
|
|
<br />
|
|
<Button type="primary" disabled={moreLoaded} onClick={handleLoadOptions}>
|
|
Load more options
|
|
</Button>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Demo;
|
|
```
|