mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
673 B
673 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
可以通过唯一的 key 来更新内容。
en-US
Update content with unique key.
import { Button, notification } from 'antd';
const key = 'updatable';
const openNotification = () => {
notification.open({
key,
message: 'Notification Title',
description: 'description.',
});
setTimeout(() => {
notification.open({
key,
message: 'New Title',
description: 'New description.',
});
}, 1000);
};
export default () => (
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
);