哪个js模块具有货币格式/计算功能?

时间:2019-02-11 01:47:57

标签: reactjs

我正在使用react并正在寻找一个可以根据货币符号转换金额的模块吗?什么是一个好的模块?

1 个答案:

答案 0 :(得分:2)

关于格式,请看Intl.NumberFormat,请参见answer,是上一个问题。

var number = 123456.789;

console.log(new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }).format(number));
// expected output: "123.456,79 €"

// the Japanese yen doesn't use a minor unit
console.log(new Intl.NumberFormat('ja-JP', { style: 'currency', currency: 'JPY' }).format(number));
// expected output: "¥123,457"

用于计算;它们只是数字,您可以按常规方式进行计算。