其他分享
首页 > 其他分享> > 又是被老板找的一天!js小数点后两位相加不等于小数点后两位,而是很多位!解决方法

又是被老板找的一天!js小数点后两位相加不等于小数点后两位,而是很多位!解决方法

作者:互联网

今天是1024还是出bug了,问题是财务开发票的时候,她说系统匹配不上。然后把他的账号拿来看了一下问题。发现代码问题,问题如下代码。

 //发票匹配规则
    rulesinvoice(){
      console.log(this.invoiceData)
      if (this.invoiceData.length!==0){
        this.numbers=0;
        for (let i = 0; i < this.invoiceData.length; i++) {
          this.numbers+=Math.floor(this.invoiceData[i].INV_COST*100)/100
          //问题出在这里,在我没有用Math.floor()取整的时候
          //this.numbers+=this.invoiceData[i].INV_COST  当时是这样写的
        }
        if (Math.floor(this.numbers*100)/100===Math.floor(this.priceAmount*100)/100){
          return true;
        }else {
          return false;
        }
      }
    },

这里的this.invoiceData[i].INV_COST为小数点后两位。但是加起来就等于102403.24000000002,所以导致审核不通过,匹配不上。

这里我的解决方法是:直接取整,乘以100除以100的方法,亦或者使用toFixed(2)函数把结果保留小数点后两位!或后几位,括号里是你保留的位数。
望大家1024无bug!

标签:invoiceData,两位,floor,小数点,js,numbers,100,Math
来源: https://blog.csdn.net/weixin_46002631/article/details/120930627