mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
1d09d6fe0c
* docs: modify the part demo to hooks * docs: modify the part demo to hooks
52 lines
867 B
Markdown
52 lines
867 B
Markdown
---
|
|
order: 7
|
|
title:
|
|
zh-CN: 更新消息内容
|
|
en-US: Update Message Content
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
可以通过唯一的 key 来更新内容。
|
|
|
|
## en-US
|
|
|
|
Update content with unique key.
|
|
|
|
```tsx
|
|
import { Button, notification } from 'antd';
|
|
import React from 'react';
|
|
|
|
const key = 'updatable';
|
|
|
|
const App: React.FC = () => {
|
|
const [api, contextHolder] = notification.useNotification();
|
|
const openNotification = () => {
|
|
api.open({
|
|
key,
|
|
message: 'Notification Title',
|
|
description: 'description.',
|
|
});
|
|
|
|
setTimeout(() => {
|
|
api.open({
|
|
key,
|
|
message: 'New Title',
|
|
description: 'New description.',
|
|
});
|
|
}, 1000);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{contextHolder}
|
|
<Button type="primary" onClick={openNotification}>
|
|
Open the notification box
|
|
</Button>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|