2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 5
|
2016-10-07 18:00:48 +08:00
|
|
|
title:
|
2016-08-11 11:41:06 +08:00
|
|
|
zh-CN: 确认对话框
|
|
|
|
en-US: Confirmation modal dialog
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-25 15:29:56 +08:00
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-06-25 15:29:56 +08:00
|
|
|
使用 `confirm()` 可以快捷地弹出确认框。onCancel/onOk 返回 promise 可以延迟关闭
|
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
To use `confirm()` to popup confirmation modal dialog. Let onCancel/onOk function return a promise object to
|
|
|
|
delay closing the dialog.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Modal, Button } from 'antd';
|
2015-11-25 16:17:58 +08:00
|
|
|
const confirm = Modal.confirm;
|
2015-06-25 15:29:56 +08:00
|
|
|
|
2016-01-07 16:29:12 +08:00
|
|
|
function showConfirm() {
|
2015-06-25 15:29:56 +08:00
|
|
|
confirm({
|
2016-10-07 18:00:48 +08:00
|
|
|
title: 'Want to delete these items?',
|
2016-08-11 11:41:06 +08:00
|
|
|
content: 'When clicked the OK button, this dialog will be closed after 1 second',
|
2016-01-23 15:22:16 +08:00
|
|
|
onOk() {
|
2016-09-10 18:14:23 +08:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
setTimeout(Math.random() > 0.5 ? resolve : reject, 1000);
|
|
|
|
}).catch(() => console.log('Oops errors!'));
|
2015-06-25 15:29:56 +08:00
|
|
|
},
|
2016-05-11 09:32:33 +08:00
|
|
|
onCancel() {},
|
2015-06-25 15:29:56 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2016-04-29 12:13:27 +08:00
|
|
|
<Button onClick={showConfirm}>
|
2016-08-11 11:41:06 +08:00
|
|
|
Confirmation modal dialog
|
2016-04-29 12:13:27 +08:00
|
|
|
</Button>
|
|
|
|
, mountNode);
|
2015-06-25 15:29:56 +08:00
|
|
|
````
|