当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Intl.Collator.supportedLocalesOf()用法及代码示例


Intl.Collat​​or.supportedLocalesOf()方法是JavaScript中的内置方法,用于返回一个数组,其中包含排序规则中支持的所提供语言环境的数组,而不必回退到运行时的默认语言环境。

用法:

Intl.Collator.supportedLocalesOf(locales, options)

参数:此方法接受上面提到并在下面描述的两个参数:

  • locales:此参数是带有BCP 47语言标记的字符串,或此类字符串的数组。
  • options:它是一个可选参数。它是一个具有localeMatcher属性的对象。 localeMatcher是要使用的语言环境匹配算法。它的值为“lookup”和“best fit”。

返回值:此方法返回一个字符串数组,该字符串表示给定的区域设置标签的子集。

以下示例说明了JavaScript中的Intl.Collat​​or.supportedLocalesOf()方法:



范例1:

const locales1 = ['ban', 'id-u-co-pinyin', 'de-ID']; 
console.log(Intl.Collator.supportedLocalesOf(locales1));

输出:

Array ["id-u-co-pinyin", "de-ID"]

范例2:

const locales1 = ['ban', 'id-u-co-pinyin', 'de-ID']; 
const options1 = { localeMatcher:'lookup' }; 
let val = Intl.Collator.supportedLocalesOf(locales1, options1) 
console.log(val[0]); 
console.log(val[1]);

输出:

"id-u-co-pinyin"
"de-ID"

支持的浏览器:下面列出了由Intl.Collat​​or.supportedLocalesOf()方法支持的浏览器:

  • 谷歌浏览器
  • Firefox
  • Opera
  • Edge
  • IE
  • Safari

相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JavaScript | Intl.Collator.supportedLocalesOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。