作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在另一个组件中使用 ANT Design 的模态,如下所示:
import React from "react";
import {
Modal,
Button
} from "antd";
class SomeModalWrapper extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
handleOk() {
console.log("OK");
}
render() {
const { modalVisible, toggleModal } = this.props;
return (
<Modal
title="Some Title"
visible={modalVisible}
width={300}
className=""
destroyOnClose={true}
footer={[
<Button key="back" onClick={() => toggleModal()}>
Return
</Button>,
<Button key="submit" type="primary" onClick={this.handleOk}>
Submit
</Button>
]}
>
// some other content
</Modal>
);
}
}
export default SomeModalWrapper;
该组件依次被父组件调用,如下所示:
import React from "react";
class SomeComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
modalVisible: false
};
}
toggleModal() {
const { modalVisible } = this.state;
this.setState({ modalVisible: !modalVisible });
}
render() {
const { modalVisible } = this.state;
return (
<div>
// some non-modal content
<button onClick={() => this.toggleModal()}>Toggle Modal</button>
<SomeModalWrapper
modalVisible={modalVisible}
toggleModal={this.toggleModal}
/>
</div>
);
}
}
export default SomeComponent;
所有按钮都可以正常工作(显示和隐藏)。但是,当我单击模态框外的区域时,由于 maskClosable
属性默认设置为 true
,模态框应自动关闭。即使我专门将它放在模态中作为 maskClosable: true
,它仍然不起作用。
不确定发生了什么?是不是因为 modal 被另一个组件包裹了?
最佳答案
问题不在于 maskClosable
,即 default value is true
.
this
绑定(bind)到 toggleModal
函数。visible={modalVisible}
,这意味着您控制模态状态,有了它,modalVisible
状态将覆盖 maskClosable
。换句话说,maskClosable
不能自行改变你的状态。class SomeComponent extends React.Component {
state = {
modalVisible: false
};
// bind with named class function or with `.bind()` inside consturctor
toggleModal = () => {
this.setState(prevState => ({ modalVisible: !prevState.modalVisible }));
};
render() {
...
}
}
此外,我建议始终使用onCancel
,没有它您可能会遇到意想不到的行为。
<Modal
...
onCancel={toggleModal}
...
>
// some other content
</Modal>;
关于reactjs - Ant Design 的 maskClosable 模态属性不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57313534/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!