填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

formatNumber

将数字格式化为文本格式,并根据区域来设置组大小、分隔符和其他参数。

Formats a number as text, with group sizing, separator, and other parameters based on the locale.

      
      formatNumber(value: number, locale: string, digitsInfo?: string): string
    
参数
value number

要格式化的数字。

The number to format.

locale string

用于要使用的语言环境格式规则的语言环境代码。

A locale code for the locale format rules to use.

digitsInfo string

十进制表示形式的选项,通过字符串以如下格式指定:{minIntegerDigits}.{minFractionDigits}-{maxFractionDigits} 。欲知详情,请参见 DecimalPipe

Decimal representation options, specified by a string in the following format: {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}. See DecimalPipe for more details.

可选. 默认值是 `undefined`.
返回值

已格式化的文本字符串。

string: The formatted text string.

参见