0
我想在React中的JSX中顯示華氏符號。顯示UTF符號
到目前爲止,我嘗試這樣做:
<h2 className="white-center">{Math.floor(JSON.parse(this.props.item["name"]["temperature"])[month]) + "℉"}</h2>
這:
<h2 className="white-center">{Math.floor(JSON.parse(this.props.item["name"]["temperature"])[month])} ℉</h2>
然而,沒有工作,顯示℉
。
如何顯示UTF-8字符?
你試過' 「\ u2109」'或' 「℉」'直接? – birdspider