我一直在寻找一个JavaScript内置说明符来转换货币数量,但结论是内置没有...
那么,JavaScript真的没有货币格式说明符吗?
与此同时,我进行了谷歌搜索,发现以下几行代码完成了这项工作
.ToFixed(0).replace(/./g, function(c, i, a) {
return i && c !== "." && ((a.length - i) % 3 === 0) ? ',' + c : c;
});
使用一些可理解的代码行将数字转换为货币的任何其他/更好的方法?
请告知。
答案 0 :(得分:0)
使用Javascript将数字解析为格式化字符串。
在浏览器或节点
中numeraljs.com /
openexchangerates.github.io/accounting.js /
仅限节点
github.com/joeferner/node-sf
github.com/fhellwig/strformat
货币格式助手
github.com/Alir3z4/node-money-currencies