为什么零格式化在格式化结果中包含$和%符号?
numeral.js
版本为1.5.3
var number = numeral(0);
numeral.zeroFormat('N/A');
var zero = number.format('0.0%')
// 'N/A%'
var zero = number.format('$0.0')
// '$N/A'
// What I expect is 'N/A'
这是一个错误还是我错过了什么?
答案 0 :(得分:1)
快速找到解决方案。旧版本中会出现此问题。 只需要转到最新版本:
var number = numeral(0);
numeral.zeroFormat('N/A');
var zero = number.format('0.0%')
// 'N/A'