Intl.PluralRules.supportedLocalesOf()
method returns an array containing those of the provided locales that are supported in plural formatting without having to fall back to the runtime's default locale.
Intl.PluralRules.supportedLocalesOf(locales[, options])
locales
locales
argument, see the
Intl page
.
options
Optional. An object that may have the following property:
localeMatcher
lookup
and
best fit
; the default is
best fit
. For information about this option, see the
Intl page
.
An array of strings representing a subset of the given locale tags that are supported in plural formatting without having to fall back to the runtime's default locale.
Returns an array with a subset of the language tags provided in
locales
. The language tags returned are those for which the runtime supports a locale in plural formatting that the locale matching algorithm used considers a match, so that it wouldn't have to fall back to the default locale.
Assuming a runtime that supports Indonesian and German but not Balinese in plural formatting,
supportedLocalesOf
returns the Indonesian and German language tags unchanged, even though
pinyin
collation is neither relevant to plural formatting nor used with Indonesian, and a specialized German for Indonesia is unlikely to be supported. Note the specification of the
lookup
algorithm here — a
best fit
matcher might decide that Indonesian is an adequate match for Balinese since most Balinese speakers also understand Indonesian, and therefore return the Balinese language tag as well.
var locales = ['ban', 'id-u-co-pinyin', 'de-ID'];
var options = { localeMatcher: 'lookup' };
console.log(Intl.PluralRules.supportedLocalesOf(locales, options).join(', '));
// → "id-u-co-pinyin, de-ID"
| 规范 |
|---|
|
ECMAScript 国际化 API (ECMA-402)
The definition of 'Intl.PluralRules.supportedLocalesOf' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
supportedLocalesOf
|
Chrome 63 | Edge 18 | Firefox 58 | IE No | Opera 50 | Safari 13 | WebView Android 63 | Chrome Android 63 | Firefox Android 58 | Opera Android 46 | Safari iOS 13 | Samsung Internet Android 8.0 |
nodejs
10.0.0
|
完整支持
不支持
见实现注意事项。
Intl
Collator
DateTimeFormat
ListFormat
NumberFormat
PluralRules
RelativeTimeFormat
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()