Intl.Locale.prototype.baseName

基线 广泛可用

此功能已成熟,可在许多设备和浏览器版本中使用。它自 2020 年 9 月.

报告反馈

描述

baseName 访问器属性 Intl.Locale 实例返回此区域设置字符串表示形式的子字符串,其中包含有关此区域设置的核心信息,包括语言,以及可用的脚本和区域。

baseName 返回 language ["-" script] ["-" region] *("-" variant) 的子序列 unicode_language_id 语法。它只包含在构造函数中明确指定的、通过区域设置标识符字符串或选项对象传递的信息。

示例

baseName 的设置访问器为 undefined。您无法直接更改此属性。

基本示例
const myLoc = new Intl.Locale("fr-Latn-CA"); // Sets locale to Canadian French
console.log(myLoc.toString()); // Prints out "fr-Latn-CA-u-ca-gregory"
console.log(myLoc.baseName); // Prints out "fr-Latn-CA"

js

基本示例
// Sets language to Japanese, region to Japan,

// calendar to Gregorian, hour cycle to 24 hours
const japan = new Intl.Locale("ja-JP-u-ca-gregory-hc-24");
console.log(japan.toString()); // Prints out "ja-JP-u-ca-gregory-hc-h24"
console.log(japan.baseName); // Prints out "ja-JP"

输入字符串中包含选项的示例

基本示例
// Input string indicates language as Dutch and region as Belgium,

// but options object overrides the region and sets it to the Netherlands
const dutch = new Intl.Locale("nl-Latn-BE", { region: "NL" });

console.log(dutch.baseName); // Prints out "nl-Latn-NL"

规范

使用覆盖输入字符串的选项的示例
规范
# ECMAScript 国际化 API 规范

浏览器兼容性

sec-Intl.Locale.prototype.baseName

另请参见