在React 中有條件地應用類別屬性
在React 中,根據從父組件傳遞的props 來顯示或隱藏元素是很常見的。為此,您可以有條件地應用 CSS 類別。然而,使用語法 {this.props.condition ? 'show' : 'hidden'} 直接在字串中。
要解決此問題,請將大括號移到字串之外,如以下更正範例所示:
<div className={"btn-group pull-right " + (this.props.showBulkActions ? 'show' : 'hidden')}
This調整確保在連接類別名稱之前評估條件。請注意「pull-right」後面的空格,以防止意外建立「pull-rightshow」類別而不是預期的「pull-right show」類別。此外,括號對於正確評估至關重要。
以上是如何在 React 中有條件地應用類別屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!