我的planCount,是不固定的,我應該怎麼寫例如
planCount==1; 顯示 一級planCount==2; 顯示 二級planCount==3; 顯示 三級
雷雷
<td className="width-w-10">{this.props.data.planCount}级</td>
如果要將數字轉換成中文就需要額外處理了 不超過10的話可以這樣
const level = ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十'] <td className="width-w-10">{level[this.props.data.planCount - 1]}级</td>
雷雷
如果要將數字轉換成中文就需要額外處理了 不超過10的話可以這樣