常用的 js 计算 精度解决方案 安装 1npm i mathjs 使用 12345678910111213141516import { create, all } from "mathjs";const config = { number: "BigNumber", precision: 20,};const math = create(all, config);function calc(expression) { if (expression) { return math.number(math.evaluate(expression)); } else { return 0; }}// 可以使用表达式进行计算console.log(calc(`0.1 + 0.2`)); // 0.3 这里推介使用表达式的方式进行计算,灵活且精确 其他计算库 currency.js