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

    Interface ResolvedCollatorOptions

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

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

    interface ResolvedCollatorOptions {
        caseFirst: string;
        collation: string;
        ignorePunctuation: boolean;
        locale: string;
        numeric: boolean;
        sensitivity: string;
        usage: string;
    }
    Index

    Properties

    caseFirst: string

    大小写排序的实际设置。

    The actual setting for case-first sorting.

    collation: string

    实际使用的排序规则。

    The collation actually used.

    ignorePunctuation: boolean

    是否忽略标点符号的实际设置。

    The actual setting for whether to ignore punctuation.

    locale: string

    实际使用的区域设置。

    The locale actually used.

    numeric: boolean

    是否使用数字排序的实际设置。

    The actual setting for whether to use numeric sorting.

    sensitivity: string

    实际使用的灵敏度级别。

    The sensitivity level actually used.

    usage: string

    实际使用的用法(排序或搜索)。

    The usage actually used (sorting or searching).