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.
|
|
|
---
|
|
|
|
order: 7
|
|
|
|
debug: true
|
|
|
|
title:
|
|
|
|
zh-CN: 手动移除
|
|
|
|
en-US: Manual to destroy
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
手动关闭modal。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Manually destroying a modal.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Modal, Button } from 'antd';
|
|
|
|
|
|
|
|
function success() {
|
|
|
|
const modal = Modal.success({
|
|
|
|
title: 'This is a notification message',
|
|
|
|
content: 'This modal will be destroyed after 1 second',
|
|
|
|
});
|
|
|
|
setTimeout(() => modal.destroy(), 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(<div>
|
|
|
|
<Button onClick={success}>Success</Button>
|
|
|
|
</div>, mountNode);
|
|
|
|
````
|