搜索

首页  >  问答  >  正文

javascript - 根据不同数据显示不同内容


我的planCount,是不固定的,我应该怎样写比如

planCount==1; 显示 一级
planCount==2; 显示 二级
planCount==3; 显示 三级

代言代言2745 天前1156

全部回复(2)我来回复

  • 滿天的星座

    滿天的星座2017-07-05 11:01:11

    雷雷

    回复
    0
  • 为情所困

    为情所困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>

    回复
    0
  • 取消回复