gpt4 book ai didi

javascript - React 使用状态来显示,否则隐藏

转载 作者:行者123 更新时间:2023-11-28 17:15:08 25 4
gpt4 key购买 nike

我在 react 中使用的状态是:

{this.state.showorhide &&
<MyComponent />
}

此时它会显示是否隐藏。

如果 showorhide 已经为真,如何添加一个条件,否则它将隐藏?

最佳答案

检查一下

constructor(props) {
super(props);
this.state = {
showorhide: false
};
}

render() {
const { showorhide } = this.state;
return (
{ showorhide ? <MyComponent /> : <HideComponent /> }
);
}

关于javascript - React 使用状态来显示,否则隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53667595/

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