formatPercent
根据语言环境规则将数字格式化为百分比。
Formats a number as a percentage according to locale rules.
formatPercent(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 | 十进制表示形式的选项,通过字符串以如下格式指定: Decimal representation options, specified by a string in the following format: 可选. 默认值是 `undefined`. |
返回值
已格式化的百分比值。
string
: The formatted percentage value.