mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
595 B
595 B
确认对话框
- order: 5
使用 confirm()
可以快捷地弹出确认框。onCancel/onOk 返回 promise 可以延迟关闭
import { Modal, Button } from 'antd';
const confirm = Modal.confirm;
function showConfirm() {
confirm({
title: '您是否确认要删除这项内容',
content: '点确认 1 秒后关闭',
onOk: function() {
return new Promise(function(resolve) {
setTimeout(resolve, 1000);
});
},
onCancel: function() {}
});
}
ReactDOM.render(
<Button onClick={showConfirm}>
确认对话框
</Button>, mountNode);