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

formatCurrency

使用区域设置规则将数字格式化为货币。

Formats a number as currency using locale rules.

      
      formatCurrency(value: number, locale: string, currency: string, currencyCode?: string, digitsInfo?: string): string
    
参数
value number

要格式化的数字。

The number to format.

locale string

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

A locale code for the locale format rules to use.

currency string

包含货币符号或其名称的字符串,例如 “$” 或 “加元”。在输出字符串中使用,但不影响该函数的操作。

A string containing the currency symbol or its name, such as "$" or "Canadian Dollar". Used in output string, but does not affect the operation of the function.

currencyCode string

ISO 4217 货币代码,例如 USD 表示美元,EUR 表示欧元。用于确定小数部分的位数。

The ISO 4217 currency code, such as USD for the US dollar and EUR for the euro. Used to determine the number of digits in the decimal part.

可选. 默认值是 `undefined`.
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 currency value.

参见