number数值转化成为货币格式

Posted moshangcoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了number数值转化成为货币格式相关的知识,希望对你有一定的参考价值。

/**
*number数值转化成为货币格式
*
* num 要转换的数值
* places 保留小数位数
* symbol 货币符号
* thousand 整数部分千位分隔符
* decimal 小数分隔符
*/
formatMoney = (num, places, symbol, thousand, decimal) => {
    places = !isNaN(places = Math.abs(places)) ? places : 2
    symbol = symbol !== undefined ? symbol : "¥"
    thousand = thousand || ","
    decimal = decimal || "."
    let negative = num < 0 ? "-" : ""
    let i = parseInt(num = Math.abs(+num || 0).toFixed(places), 10) + ""
    let j = (j = i.length) > 3 ? j % 3 : 0
    return symbol + negative + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(d{3})(?=d)/g, "$1" + thousand) + (places ? decimal + Math.abs(num - i).toFixed(places).slice(2) : "")
}

以上是关于number数值转化成为货币格式的主要内容,如果未能解决你的问题,请参考以下文章

javascript日常总结

python将PNG格式的图片转化成为jpg

如何将字符型数据转化成日期格式

JS操作小数运算,结果莫名其妙出现多位小数问题

将R环境下的Seurat RDS格式数据转化成为到python环境下scanpy的anndata格式

JS对数字进行货币格式化并且保留两位小数点,小数用0补全