标签: javascript reactjs preact
我正在使用preact和preact-compat。
this.state.isShown ? <Modal><div>This is a test</div></Modal:空
this.state.isShown ? <Modal><div>This is a test</div></Modal
在将isShown标志设置为false后将其从DOM中删除时,会引发错误。
modal_set_container-错误
//模态此时未定义,导致错误 if (modals.length === 0) { return null; }
if (modals.length === 0) { return null; }
有什么主意吗?