2016-06-21 18:50:07 +08:00
|
|
|
---
|
|
|
|
order: 7
|
2016-11-15 15:02:30 +08:00
|
|
|
title:
|
2018-08-25 21:51:19 +08:00
|
|
|
zh-CN: 手动更新和移除
|
|
|
|
en-US: Manual to update destroy
|
2016-06-21 18:50:07 +08:00
|
|
|
---
|
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2018-08-25 21:51:19 +08:00
|
|
|
手动更新和关闭 `Modal.method` 方式创建的对话框。
|
2016-06-21 18:50:07 +08:00
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## en-US
|
|
|
|
|
2018-08-25 21:51:19 +08:00
|
|
|
Manually updateing and destroying a modal from `Modal.method`.
|
2016-08-11 11:41:06 +08:00
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2016-06-21 18:50:07 +08:00
|
|
|
import { Modal, Button } from 'antd';
|
|
|
|
|
2018-08-25 21:51:19 +08:00
|
|
|
function countDown() {
|
|
|
|
let secondsToGo = 5;
|
2016-06-21 18:50:07 +08:00
|
|
|
const modal = Modal.success({
|
2016-08-11 11:41:06 +08:00
|
|
|
title: 'This is a notification message',
|
2018-08-25 21:51:19 +08:00
|
|
|
content: `This modal will be destroyed after ${secondsToGo} second.`,
|
2016-06-21 18:50:07 +08:00
|
|
|
});
|
2018-08-25 21:51:19 +08:00
|
|
|
setInterval(() => {
|
|
|
|
secondsToGo -= 1;
|
|
|
|
modal.update({
|
|
|
|
content: `This modal will be destroyed after ${secondsToGo} second.`,
|
|
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
setTimeout(() => modal.destroy(), secondsToGo * 1000);
|
2016-06-21 18:50:07 +08:00
|
|
|
}
|
|
|
|
|
2017-05-16 10:43:12 +08:00
|
|
|
ReactDOM.render(
|
2018-08-25 21:51:19 +08:00
|
|
|
<Button onClick={countDown}>Open modal to close in 5s</Button>,
|
2017-05-16 10:43:12 +08:00
|
|
|
mountNode
|
|
|
|
);
|
2016-06-21 18:50:07 +08:00
|
|
|
````
|