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


Javascript Intl.getCanonicalLocales()用法及代码示例


JavaScript中的Intl.getCanonicalLocales()方法是一个标准内置对象,该对象返回包含规范语言环境名称的数组。

用法:

Intl.getCanonicalLocales(locales)

参数:此方法接受上述和以下描述的单个参数:



  • locales:此参数包含要获取规范语言环境名称的字符串值的列表。

返回值:此方法返回一个包含规范语言环境名称的数组。

以下示例说明了JavaScript中的Intl.getCanonicalLocales()方法:

范例1:

console.log(Intl.getCanonicalLocales('EN-US')); 
console.log(Intl.getCanonicalLocales(['EN-US', 'Fr'])); 
  
try { 
    Intl.getCanonicalLocales('GeeksforGeeks'); 
} catch (error) { 
    console.log(error); 
}

输出:

Array ["en-US"]
Array ["en-US", "fr"]
RangeError:Incorrect locale information provided

范例2:

console.log(Intl.getCanonicalLocales('EN-US')); 
console.log(Intl.getCanonicalLocales(['EN-US', 'Fr'])); 
  
try { 
    console.log(Intl.getCanonicalLocales(['Tr', 'UT'])); 
} catch (error) { 
    console.log(error); 
}

输出:

Array ["en-US"]
Array ["en-US", "fr"]
Array ["tr", "ut"]

支持的浏览器:以下列出了Intl.getCanonicalLocales()方法支持的浏览器:

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



相关用法


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