Intl.DateTimeFormat.prototype.format()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2017.
The Intl.DateTimeFormat.prototype.format()
メソッドは、この Intl.DateTimeFormat
オブジェクトのロケールと整形オプションに従って日付や時刻を整形します。
試してみましょう
構文
format(date);
引数
date
-
整形する日付です。
解説
format
ゲッター関数は、この Intl.DateTimeFormat
オブジェクトのロケールと整形オプションに従って日付や時刻を整形し、文字列に格納します。
例
format の使用
format
ゲッター関数を使用して単一の日付値を整形します。こちらはセルビアの例です。
var options = {
weekday: "long",
year: "numeric",
month: "long",
day: "numeric",
};
var dateTimeFormat = new Intl.DateTimeFormat("sr-RS", options);
console.log(dateTimeFormat.format(new Date()));
// → "недеља, 7. април 2013."
format と map の使用
format
ゲッター関数を使用して、配列内のすべての日付を整形することができます。なお、この関数は供給元である Intl.DateTimeFormat
に結び付けられているので、直接 Array.prototype.map()
に渡すことができます。
var a = [new Date(2012, 08), new Date(2012, 11), new Date(2012, 03)];
var options = { year: "numeric", month: "long" };
var dateTimeFormat = new Intl.DateTimeFormat("pt-BR", options);
var formatted = a.map(dateTimeFormat.format);
console.log(formatted.join("; "));
// → "setembro de 2012; dezembro de 2012; abril de 2012"
書式化された日付値を固定値と比較することは避ける
ほとんどの場合、 format()
が返す書式は一貫しています。しかし、これは将来的に変更される可能性があり、すべての言語で保証されているわけではありません — 出力のバリエーションは設計上のものであり、仕様上は許容されています。最も注目すべきは、 IE や Edge ブラウザは日付の周りに双方向の制御文字を挿入するため、他のテキストと連結したときに出力テキストが適切に流れることです。
このことから、 format()
の結果と固定値を比較することができると期待してはいけません。
let d = new Date("2019-01-01T00:00:00.000000Z");
let formattedDate = Intl.DateTimeFormat(undefined, {
year: "numeric",
month: "numeric",
day: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
}).format(d);
"1.1.2019, 01:00:00" === formattedDate;
// true in Firefox and others
// false in IE and Edge
メモ: この StackOverflow のスレッドに詳細や例があります。
仕様書
Specification |
---|
ECMAScript Internationalization API Specification # sec-intl.datetimeformat.prototype.format |
ブラウザーの互換性
BCD tables only load in the browser