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
title:
2016-08-11 11:41:06 +08:00
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.
2017-02-13 10:55:53 +08:00
````jsx
import { Modal, Button } from 'antd';
class App extends React.Component {
state = {
ModalText: 'Content of the modal',
visible: false,
confirmLoading: false,
}
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
});
}
handleOk = () => {
2015-06-12 17:11:32 +08:00
this.setState({
ModalText: 'The modal 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);
}
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() {
const { visible, confirmLoading, ModalText } = this.state;
return (
<div>
<Button type="primary" onClick={this.showModal}>Open</Button>
<Modal title="Title"
visible={visible}
onOk={this.handleOk}
confirmLoading={confirmLoading}
onCancel={this.handleCancel}
>
<p>{ModalText}</p>
</Modal>
</div>
);
}
}
2015-06-12 17:11:32 +08:00
ReactDOM.render(<App />, mountNode);
2015-06-12 17:11:32 +08:00
````