ant-design/components/modal/demo/confirm-promise.md
2016-08-11 11:41:06 +08:00

40 lines
846 B
Markdown

---
order: 5
title:
zh-CN: 确认对话框
en-US: Confirmation modal dialog
---
## zh-CN
使用 `confirm()` 可以快捷地弹出确认框。onCancel/onOk 返回 promise 可以延迟关闭
## en-US
To use `confirm()` to popup confirmation modal dialog. Let onCancel/onOk function return a promise object to
delay closing the dialog.
````jsx
import { Modal, Button } from 'antd';
const confirm = Modal.confirm;
function showConfirm() {
confirm({
title: 'Are you sure you want to delete this item ?',
content: 'When clicked the OK button, this dialog will be closed after 1 second',
onOk() {
return new Promise((resolve) => {
setTimeout(resolve, 1000);
});
},
onCancel() {},
});
}
ReactDOM.render(
<Button onClick={showConfirm}>
Confirmation modal dialog
</Button>
, mountNode);
````