Heim > Fragen und Antworten > Hauptteil
Mein PlanCount ist nicht festgelegt, wie soll ich es so schreiben
planCount==1; Ebene eins anzeigen
planCount==2; Ebene zwei anzeigen
planCount==3;
滿天的星座2017-07-05 11:01:11
{this.props.data.planCount === 1 ? "一级" : (this.props.data.planCount === 2 ? "二级" : "三级")}
为情所困2017-07-05 11:01:11
<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>