gpt4 book ai didi

javascript - React - 从返回条件中删除空 DIV

转载 作者:行者123 更新时间:2023-12-01 02:27:20 26 4
gpt4 key购买 nike

我正在尝试删除这个空的 <div>来自 html。

class ParentComp extends Component {
...

return (
<div>
{
GlobalAppHandlerStore.getCurrentState().countryCode === this.props.countryCode ?
this.props.children
:
''
}
</div>
);

用例:

<ParentComp countryCode={COUNTRY_CODE.be.value}>
<ItemConfigure {...this.props} />
</ParentComp>

如果不匹配,则打印为空。

最佳答案

试试这个:

render() {
return GlobalAppHandlerStore.getCurrentState().countryCode === this.props.countryCode && (<div>{this.props.children}</div>);
}

关于javascript - React - 从返回条件中删除空 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48638117/

26 4 0
文章推荐: javascript - 解析 promise 状态后如何将值存储在变量中
文章推荐: javascript - 我的代码有什么问题吗?每个单词的第一个字母应大写
文章推荐: javascript - 如何检查内部
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com