Intl.Locale.prototype.toString()

基线 广泛可用

此功能已非常成熟,可在许多设备和浏览器版本上运行。它自 2020 年 9 月.

报告反馈

试试看

语法

toString() 方法 Intl.Locale 实例返回此区域设置的完整 区域设置标识符字符串.
toString()

js

参数

无。

返回值

描述

区域设置 的 Unicode 区域设置标识符字符串。

示例

使用 toString

toString() 方法 Intl.Locale 实例返回此区域设置的完整 区域设置标识符字符串.
const myLocale = new Intl.Locale("fr-Latn-FR", {
  hourCycle: "h12",
  calendar: "gregory",
});
console.log(myLocale.baseName); // Prints "fr-Latn-FR"
console.log(myLocale.toString()); // Prints "fr-Latn-FR-u-ca-gregory-hc-h12"

规范

规范
ECMAScript 国际化 API 规范
# sec-Intl.Locale.prototype.toString

浏览器兼容性

BCD 表仅在启用了 JavaScript 的浏览器中加载。

另请参阅