我想使用三元运算符根据某些状态条件呈现两个按钮,以避免代码重复。
我正在尝试做什么?
我有两个按钮 Cancel 和 Start 基于状态值load_cancel
。如果单击取消按钮load_cancel
设置为true
和load_cancel
设置为false
开始按钮时显示。所以我在render
方法中有这样的东西
{props.item_id && this.props.load_cancel &&
<button onClick=
{this.props.handle_load_start}>start</button>}
{props.item_id && !this.props.load_cancel &&
<button onClick={this.props.handle_load_cancel}>Cancel</button>}
我如何使用三元运算符做同样的事情?
谢谢。