2018-12-03 17:08:48 +08:00
---
order: 8
title:
2019-05-07 14:57:32 +08:00
zh-CN: 销毁确认对话框
2018-12-03 17:08:48 +08:00
en-US: destroy confirmation modal dialog
---
## zh-CN
2018-12-03 21:49:00 +08:00
使用 `Modal.destroyAll()` 可以销毁弹出的确认窗。通常用于路由监听当中,处理路由前进、后退不能销毁确认对话框的问题。
2018-12-03 17:08:48 +08:00
## en-US
2019-04-19 22:06:38 +08:00
`Modal.destroyAll()` will destroy all confirmation modal dialogs. Usually, you can use it in router change event to destroy confirm modal dialog automatically.
2018-12-03 17:08:48 +08:00
```jsx
import { Modal, Button } from 'antd';
2019-12-25 21:28:06 +08:00
import { ExclamationCircleOutlined } from '@ant-design/icons';
2018-12-03 17:08:48 +08:00
2018-12-23 18:40:11 +08:00
function destroyAll() {
2018-12-03 21:49:00 +08:00
Modal.destroyAll();
2018-12-23 18:40:11 +08:00
}
2018-12-03 17:08:48 +08:00
2019-06-19 19:09:08 +08:00
const { confirm } = Modal;
2018-12-03 17:08:48 +08:00
function showConfirm() {
2018-12-23 18:40:11 +08:00
for (let i = 0; i < 3 ; i + = 1 ) {
setTimeout(() => {
confirm({
2019-12-25 21:28:06 +08:00
icon: < ExclamationCircleOutlined / > ,
2019-05-07 14:57:32 +08:00
content: < Button onClick = {destroyAll} > Click to destroy all< / Button > ,
2018-12-23 18:40:11 +08:00
onOk() {
console.log('OK');
},
onCancel() {
console.log('Cancel');
},
});
}, i * 500);
}
2018-12-03 17:08:48 +08:00
}
2022-04-03 23:27:45 +08:00
export default () => < Button onClick = {showConfirm} > Confirm< / Button > ;
2018-12-03 17:08:48 +08:00
```