React警告:Received NaN for the `children` attribute. If this is expected, cast the value to a string.

使用React框架時,組件在使用<span>{ Math.abs(goal.goalInfo.pretimes - goal.usergoalInfo.cpt_times )}</span>這一語句時出現警告:Received NaN for the `children` attribute. If this is expected, cast the value to a string.

解決:將運算結果轉爲字符串 <span>{ Math.abs(goal.goalInfo.pretimes - goal.usergoalInfo.cpt_times ).toString() }</span>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章