如果字段有信息,则如何显示跨度,否则React JSX无法显示



当字段没有空时,我需要显示图标,否则我们显示空字段而没有关闭的图标

{
this.state.showIcon ? (
<span
style={{ cursor: "pointer" }}
onClick={() => {
this.props.handleChangeAnyInput("", `exercice_${item.id}`);
}}
>
X
</span>
) : (
""
);
}

这是工作代码

{
this.state.showIcon ? 
<span
style={{ cursor: "pointer" }}
onClick={() => {
this.props.handleChangeAnyInput("", `exercice_${item.id}`);
}}
>
</span>
: 
""
}

相关内容

  • 没有找到相关文章

最新更新