You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
566 B
35 lines
566 B
5 years ago
|
---
|
||
|
order: 5
|
||
|
title:
|
||
|
zh-CN: 更新消息内容
|
||
|
en-US: Update Message Content
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
可以通过唯一的 `key` 来更新内容。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Update message content with unique `key`.
|
||
|
|
||
|
```jsx
|
||
|
import { Button, message } from 'antd';
|
||
|
|
||
|
const key = 'updatable';
|
||
|
|
||
|
const openMessage = () => {
|
||
|
message.loading({ content: 'Loading...', key });
|
||
|
setTimeout(() => {
|
||
|
message.success({ content: 'Loaded!', key, duration: 2 });
|
||
|
});
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<Button type="primary" onClick={openMessage}>
|
||
|
Open the message box
|
||
|
</Button>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|