gpt4 book ai didi

reactjs - 单击覆盖层时 react 模式未关闭

转载 作者:行者123 更新时间:2023-12-03 13:43:06 25 4
gpt4 key购买 nike

我正在使用react-modal

文档提到,默认情况下,当您单击叠加层时,模式应关闭。即使我将 shouldCloseOnOverlayClick 属性设置为 true,这仍然不起作用。

我不知道有什么可能阻止该事件发生。

如果这与任何内容相关/指示任何内容(并且我还没有弄清楚为什么会显示此内容),我在 Chrome 开发人员工具中注意到我的模式的覆盖层和内容节点都有一个未定义的类。我使用的所有 CSS 类都已定义并按其应有的方式工作。

这是相关的 JSX 和 CSS,如果需要更多上下文,请告诉我。

JSX:

return (
<div className="Modal">
<Modal
className={{
base: 'Modal-content' + ' Modal-InputError-videoURL'
}}
overlayClassName={{
base: 'Modal-overlay'
}}
isOpen={true}
contentLabel="Modal"
>
{props.message}
<br />
<br />
<br />
<button
className="Modal-button"
onClick={events.handleCloseModal}
>
Close
</button>
</Modal>
</div>
)

CSS 类:

.Modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.35);
z-index: 9998;
}

.Modal-content {
display: relative;
position: absolute;
top: 50%;
left: 50%;
border: 1px solid #ccc;
background: rgb(38,38,38);
border: 1.5px solid rgb(45,45,45);
overflow: auto;
border-radius: 1px;
outline: none;
z-index: 9999;
width: 400px;
margin-left: -150px;
margin-right: -150px;
padding: 24px;
line-height: 16px;
}

.Modal-InputError-videoURL {
height: 134px;
margin-bottom: -67px;
margin-top: -67px;
}

.Modal-button {
display: inline-block;
padding: 4px;
margin: 0;
}

最佳答案

我通过使用onRequestClose(根据文档)解决了这个问题。看来 react-modal 不会在其本地状态中存储 isOpen ,因此我提供了一个对 onRequestClose 的回调来更新 state 在父组件中,随后作为 prop 传递给模态。

http://reactcommunity.org/react-modal/examples/on_request_close.html

关于reactjs - 单击覆盖层时 react 模式未关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45258227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com