formatCurrency

Formats a number as currency using locale rules.

查看"说明"...

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

可选. 默认值是 undefined.

digitsInfo string

可选. 默认值是 undefined.

返回值

string

说明

Use currency to format a number as currency.

Where:

  • value is a number.
  • locale is a string defining the locale to use.
  • currency is the string that represents the currency, it can be its symbol or its name.
  • currencyCode is the ISO 4217 currency code, such as USD for the US dollar and EUR for the euro.
  • digitInfo See DecimalPipefor more details.