mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
729 B
729 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
可以通过唯一的 key 来更新内容。
en-US
Update content with unique key.
import { Button, notification } from 'antd';
import React from 'react';
const key = 'updatable';
const openNotification = () => {
notification.open({
key,
message: 'Notification Title',
description: 'description.',
});
setTimeout(() => {
notification.open({
key,
message: 'New Title',
description: 'New description.',
});
}, 1000);
};
const App: React.FC = () => (
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
);
export default App;