mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
572 B
572 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 5 |
|
zh-CN
可以通过唯一的 key 来更新内容。
en-US
Update message content with unique key.
import { Button, message } from 'antd';
const key = 'updatable';
const openMessage = () => {
message.loading({ content: 'Loading...', key });
setTimeout(() => {
message.success({ content: 'Loaded!', key, duration: 2 });
}, 1000);
};
ReactDOM.render(
<Button type="primary" onClick={openMessage}>
Open the message box
</Button>,
mountNode,
);