神岛 API 文档 - ArenaPro版
    Preparing search index...

    Interface ResolvedNumberFormatOptions

    一个接口,表示由 Intl.NumberFormat 对象的 resolvedOptions 方法返回的已解析选项。

    An interface that represents the resolved options returned by the resolvedOptions method of an Intl.NumberFormat object.

    interface ResolvedNumberFormatOptions {
        currency?: string;
        currencyDisplay?: keyof NumberFormatOptionsCurrencyDisplayRegistry;
        locale: string;
        maximumFractionDigits?: number;
        maximumSignificantDigits?: number;
        minimumFractionDigits?: number;
        minimumIntegerDigits: number;
        minimumSignificantDigits?: number;
        numberingSystem: string;
        style: keyof NumberFormatOptionsStyleRegistry;
        useGrouping: boolean;
    }
    Index

    Properties

    currency?: string

    实际使用的货币。

    The currency actually used.

    currencyDisplay?: keyof NumberFormatOptionsCurrencyDisplayRegistry

    实际使用的货币显示方式。

    The currency display actually used.

    locale: string

    实际使用的区域设置。

    The locale actually used.

    maximumFractionDigits?: number

    实际使用的最大小数位数。

    The maximum number of fraction digits actually used.

    maximumSignificantDigits?: number

    实际使用的最大有效数字位数。

    The maximum number of significant digits actually used.

    minimumFractionDigits?: number

    实际使用的最小小数位数。

    The minimum number of fraction digits actually used.

    minimumIntegerDigits: number

    实际使用的最小整数位数。

    The minimum number of integer digits actually used.

    minimumSignificantDigits?: number

    实际使用的最小有效数字位数。

    The minimum number of significant digits actually used.

    numberingSystem: string

    实际使用的编号系统。

    The numbering system actually used.

    style: keyof NumberFormatOptionsStyleRegistry

    实际使用的格式化样式。

    The formatting style actually used.

    useGrouping: boolean

    是否使用分组分隔符的实际设置。

    The actual setting for whether to use grouping separators.