這是我的代碼:如何解決這種違反eslint規則的'react/no-unescaped-entitie'的行爲?
const func =() => {
return (
<div >
you're free
</div>
)}
不知何故eslint標誌線「你是自由的」,錯誤error HTML entities must be escaped react/no-unescaped-entities
不過。我可以看到文字you're free
呈現沒有問題。如果我將它轉義爲'
,那麼我很難搜索字符串(我期望在編輯器中搜索you're free
以返回命中,但顯然編輯器會因爲文本實際上是you're free
而丟失)
那麼解決這個eslint異常的最好方法是什麼?
推薦的解決方案是使用'''而不是將其作爲變量包裝。 – Noitidart