ant-design/components/modal/demo/async.md

69 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-08-11 11:41:06 +08:00
title:
zh-CN: 异步关闭
en-US: Asynchronously close
2016-03-31 09:40:55 +08:00
---
2015-06-12 17:11:32 +08:00
2016-08-11 11:41:06 +08:00
## zh-CN
点击确定后异步关闭对话框,例如提交表单。
2015-06-12 17:11:32 +08:00
2016-08-11 11:41:06 +08:00
## en-US
Asynchronously close a modal dialog when a user clicked OK button, for example,
you can use this pattern when you submit a form.
2015-06-12 17:11:32 +08:00
````jsx
import { Modal, Button } from 'antd';
const Test = React.createClass({
2015-06-12 17:11:32 +08:00
getInitialState() {
return {
2016-08-11 11:41:06 +08:00
ModalText: 'Content of the modal dialog',
2016-05-11 09:32:33 +08:00
visible: false,
2015-06-12 17:11:32 +08:00
};
},
showModal() {
2015-06-12 23:31:44 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: true,
2015-06-12 23:31:44 +08:00
});
2015-06-12 17:11:32 +08:00
},
handleOk() {
this.setState({
2016-08-11 11:41:06 +08:00
ModalText: 'The modal dialog will be closed after two seconds',
2016-05-11 09:32:33 +08:00
confirmLoading: true,
2015-06-12 17:11:32 +08:00
});
2015-08-25 17:08:43 +08:00
setTimeout(() => {
2015-06-12 23:31:44 +08:00
this.setState({
visible: false,
2016-05-11 09:32:33 +08:00
confirmLoading: false,
2015-06-12 23:31:44 +08:00
});
2015-08-25 17:08:43 +08:00
}, 2000);
2015-06-12 17:11:32 +08:00
},
handleCancel() {
2016-08-11 11:41:06 +08:00
console.log('Clicked cancel button');
2015-09-08 12:38:21 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: false,
2015-09-08 12:38:21 +08:00
});
2015-06-12 17:11:32 +08:00
},
render() {
return (
<div>
2016-08-11 11:41:06 +08:00
<Button type="primary" onClick={this.showModal}>Open a modal dialog</Button>
<Modal title="Title of the modal dialog"
visible={this.state.visible}
onOk={this.handleOk}
confirmLoading={this.state.confirmLoading}
onCancel={this.handleCancel}
>
<p>{this.state.ModalText}</p>
</Modal>
</div>
);
2016-05-11 09:32:33 +08:00
},
2015-06-12 17:11:32 +08:00
});
ReactDOM.render(<Test />, mountNode);
2015-06-12 17:11:32 +08:00
````