ant-design/components/notification/demo/update.md

52 lines
867 B
Markdown
Raw Normal View History

2018-05-04 18:15:28 +08:00
---
order: 7
title:
zh-CN: 更新消息内容
en-US: Update Message Content
---
## zh-CN
可以通过唯一的 key 来更新内容。
## en-US
Update content with unique key.
```tsx
2018-05-04 18:15:28 +08:00
import { Button, notification } from 'antd';
2022-05-21 22:14:15 +08:00
import React from 'react';
2018-05-04 18:15:28 +08:00
const key = 'updatable';
const App: React.FC = () => {
const [api, contextHolder] = notification.useNotification();
const openNotification = () => {
api.open({
2018-05-04 18:15:28 +08:00
key,
message: 'Notification Title',
description: 'description.',
2018-05-04 18:15:28 +08:00
});
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;
2019-05-07 14:57:32 +08:00
```