gpt4 book ai didi

reactjs - ref.current.contains 不是 React 中的函数

转载 作者:行者123 更新时间:2023-12-04 12:10:16 25 4
gpt4 key购买 nike

我在 React 中做了一个下拉切换。我的下拉菜单工作得很好。但是当我尝试在下拉菜单外部单击时关闭下拉菜单。它显示错误。我使用 ref 来查找容器元素。
示例代码


class Search extends React.Component{
constructor()
{
super()
this.state={
notificationStatus:false,
isFocus:false


}
this.container=React.createRef()
}
toggleNotification=()=>
{
this.setState({notificationStatus:!this.state.notificationStatus});
}

componentDidMount() {
document.addEventListener("mousedown", this.handleClickOutside);
}
componentWillUnmount() {
document.removeEventListener("mousedown", this.handleClickOutside);
}
handleClickOutside = event => {
if(this.container.current)
{
if (this.container.current && !this.container.current.contains(event.target)) {
this.setState({
notificationStatus: false,
});
}
}
};
render()
{
const {isFocus,notificationStatus}=this.state;
return(
<div>
<div className="col-md-1 col-sm-1 bell-container flex all-center relative">
<img src={bell} onClick={this.toggleNotification} alt="bell icon" />
</div>
{
notificationStatus ? <NotificationList ref={this.container} /> : null

}

</div>


)
}
}

最佳答案

添加 引用通知列表 组件不会为您提供其中呈现的 DOM 元素的引用,您需要将引用传递给 divNotificationList

<NotificationList innerRef={this.container} />

并在通知列表中
class NotificationList extends React.Component {
render() {
<div ref={this.props.innerRef}>{/* */}</div>
}
}

附言一个简短的解决方案是使用 ReactDOM.findDOMNode(this.container.current)但不再推荐在 React 中使用

关于reactjs - ref.current.contains 不是 React 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61862978/

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