当字段没有空时,我需要显示图标,否则我们显示空字段而没有关闭的图标
{
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>
:
""
}