-1

我想找出显示“货币”格式的最佳方式。有人可以给我一个好的建议吗?我知道有两种方法,例如 toLocaleString 或使用 accounting.js。哪一个更好?

const num=123.45;
num.toLocaleString('en-US',{style:'currency', currency:'NZD'}); 
4

1 回答 1

3

尝试使用Intl.numberformat

用法 :

var formatter = new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'USD',
  minimumFractionDigits: 2,
});
formatter.format(2500); // $2,500.00
//the default value for minimumFractionDigits depends on the currency
于 2018-08-24T10:57:52.430 回答