0
我知道如何使用三元操作符是這樣的:三元操作符返回HTML
{ this.state.showThanks ? 'Thanks for your response!' : null }
但我想呈現HTML,然後卸下點擊
{ this.state.showThanks ? <input type="submit" className="decisionButtons" id="canDecisionButton" value="I can play" onClick={() => this.canPlay()}/>
<input type="submit" className="decisionButtons" id="cantDecisionButton" value="I cannot play" onClick={() => this.cannotPlay()}/>
: 'Thanks for your response!' }
我是HTML嘗試類似上面的東西,但我得到的錯誤,所以我如何可以將我的反應呈現方法中的三元組內的HTML?
謝謝,最佳答案! –