1.查找相关博客得知,toFixed方法返回的是一个字符串,在不同的浏览器的精度不同
2.对api方法的了解程度,参数类型,返回结果类型
3.计算代码的逻辑问题
遇到情况:
在计算完toFixed后用+=运算符,结果显示为字符串拼接:
putoutWeight += (b.weight/b.rebarAmount*b.leftRebarAmount/1000000000).toFixed(3);
解决方案:
在+=运算符计算完成后,再对变量进行toFixed方法
putoutWeight += b.weight/b.rebarAmount*b.leftRebarAmount;
const result = (putoutWeight/1000000000).toFixed(3)