You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.0 KiB

# 异步关闭
- order: 1
点击确定后异步关闭对话框。
---
````jsx
var Modal = antd.Modal;
var ModalText = '对话框的内容';
var Test = React.createClass({
getInitialState() {
return {
10 years ago
ModalText: '对话框的内容',
10 years ago
visible: false
};
},
showModal() {
10 years ago
this.setState({
10 years ago
visible: true
10 years ago
});
},
handleOk() {
this.setState({
ModalText: '对话框将在两秒后关闭'
});
setTimeout((function() {
10 years ago
this.setState({
10 years ago
visible: false
10 years ago
});
}).bind(this), 2000);
},
handleCancel() {
console.log('点击了取消');
},
render() {
return <div>
<button className="ant-btn ant-btn-primary" onClick={this.showModal}>显示对话框</button>
<Modal ref="modal"
title="对话框标题"
10 years ago
visible={this.state.visible}
onOk={this.handleOk}
onCancel={this.handleCancel}>
<p>{this.state.ModalText}</p>
</Modal>
</div>;
}
});
React.render(<Test/> , document.getElementById('components-modal-demo-custom'));
````