我制作了两个按钮组件,当我单击一个组件时,我想渲染另一个 onClick 以便能够禁用(因为它们看起来不一样)。
const match = id;
const checkId = this.state.pokemon.includes(match);
{!checkId || this.state.isDisabled === true ? (
<button
onClick={() =>
this.setState({
isDisabled: true
})
}
>
Get Pokemon
</button>
) : (
<Button disabled/>
)}
</div>
问题是按钮禁用仅在我刷新时呈现,因为满足检查 ID 的条件但我在单击后直接切换到禁用按钮时遇到问题
人到中年有点甜
三国纷争
相关分类