formatCurrency
Formats a number as currency using locale rules.
formatCurrency(value: number, locale: string, currency: string, currencyCode?: string, digitsInfo?: string): string
参数
value | number | |
locale | string | |
currency | string | |
currencyCode | string | 可选. 默认值是 |
digitsInfo | string | 可选. 默认值是 |
返回值
string
说明
Use currency to format a number as currency.
Where:
valueis a number.localeis astringdefining the locale to use.currencyis the string that represents the currency, it can be its symbol or its name.currencyCodeis the ISO 4217 currency code, such asUSDfor the US dollar andEURfor the euro.digitInfoSeeDecimalPipefor more details.