JavaSscript Date toLocaleDateString 日期时间格式列表

问题描述 投票:0回答:1

在哪里可以找到 Date.prototype.toLocaleDateString 格式的官方列表?它没有从该 MDN 页面链接,并且“这个措辞混乱的问题”的可接受答案列出了一组不同的格式。 CLDR 数据库 很难使用。 我想要的是一张简单的地图,如下图所示:

const date = new Date(); for (const locale of ['en-US', 'en-GB', 'en-CA']) console.log(locale, '=>', date.toLocaleDateString(locale, { }));

传递

{ month: 'short' }

而不是空选项对象可获得奖励积分。

    

javascript internationalization locale date-formatting
1个回答
0
投票

    https://html-shark.com/HTML/LanguageCodes.htm
  1. (涵盖很多)
  2. http://www.lingoes.net/en/translator/langcode.htm
  3. (备份)
  4. 编辑: 更全面的清单
https://gist.github.com/mlconnor/1887156

© www.soinside.com 2019 - 2024. All rights reserved.