使用NumeralJS格式化数字不会输出我期望的结果

时间:2019-08-20 13:43:56

标签: javascript numeraljs

我正在尝试使用NumeralJS格式化一些来自数据库的数字。

主要功能文件中的代码:

$(document).ready(function(){
    numeral.register('locale', 'pt-br', {
        delimiters: {
            thousands: '',
            decimal: ','
        },
        abbreviations: {
            thousand: 'k',
            million: 'm',
            billion: 'b',
            trillion: 't'
        },
        ordinal : function (number){
            return number === 1 ? 'er' : 'ème';
        },
        currency: {
            symbol: 'R$'
        }
    });

    if ($('[type="date"]').prop('type') != 'date'){
        $('[type="date"]').datepicker();
    }
});

页面代码

numeral.locale('pt-br');
...
var percDiferenca = numeral(retorno.dados[i].percentedif).format('0,00');
var percValor = numeral(retorno.dados[i].percenteval).format('0.00');

它正在输出11.166和213986,00。 我想要的结果是11,66和2139,86。 预先谢谢你。

0 个答案:

没有答案