vhbjknkm 2022-03-01 15:29 采纳率: 100%
浏览 81
已结题

前端要怎么封装一个公共方法,把之前币种的公共方法替换掉

我想要达到的结果

这个在前端要怎么改
46.017700
将后面的0给去掉
要是
46.017717
就不用去掉数字

如果是六个0就保留小数点后两位
0.000000
改成
0.00

增加币种公共方法
这个是要替换掉的,有没有什么方法达到我要的结果
  common.currencyFormat = function (value, currencyId, type, enterpriseId) {
    return mf.currencyFormat(value, currencyId, type, enterpriseId)
  }
  common.currencyFormat = function (value, currencyId, type, enterpriseId) {
    var num = mf.currencyFormat(value, currencyId, type, enterpriseId)
    num = num.toString().split(".");  // 分隔小数点
    var arr = num[0].split("").reverse();  // 转换成字符数组并且倒序排列
    var res = [];
    for (var i = 0, len = arr.length; i < len; i++) {
      if (i % 3 === 0 && i !== 0) {
        res.push(",");   // 添加分隔符
      }
      res.push(arr[i]);
    }
    res.reverse(); // 再次倒序成为正确的顺序
    if (num[1]) {  // 如果有小数的话添加小数部分
      res = res.join("").concat("." + num[1]);
    } else {
      res = res.join("");
    }
    return res
  }

  • 写回答

4条回答 默认 最新

  • 在下月亮有何贵干 前端领域优质创作者 2022-03-01 16:04
    关注
        const check = (num) => {
            let res = Number(num)
            if (!String(res).includes('.')) {
                return res.toFixed(2)
            } else if (String(res).split('.')[1].length < 2) {
                return res.toFixed(2)
            } else {
                return res
            }
        }
    
        console.log(check(46.017700))//46.0177
        console.log(check(46.000000))//46.00
        console.log(check(46.017717))//46.017717
        console.log(check(46.01))//46.01
        console.log(check(46.1))//46.10
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 3月5日
  • 已采纳回答 3月2日
  • 创建了问题 3月1日

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?