在哪里可以找到Date.prototype.toLocaleDateString格式的正式列表?它未从该MDN页链接,并且接受的this confusingly phrased question答案列出了一组不同的格式。 CLDR database很难消费。
我想要的是一张简单的地图,如下图所示:
const date = new Date();
for (const locale of ['en-US', 'en-GB', 'en-CA'])
console.log(locale, '=>', date.toLocaleDateString(locale, { }));
传递{ month: 'short' }
而不是空的选项对象的奖励点。