我使用ReactJS,我有以下問題,我無法找到一個解決方案:Reactjs渲染JSX動態文本值
在點來呈現我想更換之間的空間前夕兩個詞與任何將強制換行的任何內容。到目前爲止,我所嘗試的一切都不起作用我讀過這可能暗示我負責的一個「」
let strReturn = "\u000A";//<br/>//\u000D
// for example this.props.label could have a value of "Big Bid"
// now remove space between 'Big Bid' and replace with <br/>
let str = this.props.label.replace(/ /, strReturn);
return <div className={this.props.className}>{str}</div>
目前什麼是渲染到屏幕包括文字說大<br/>
的投標文件作出反應。
如果有任何ReactJS專業人士可以告訴我處理這個問題的最佳方式,我將非常感激。
非常感謝提前。