Intl 国际化

Tags
javascripti18n
Created
Dec 31, 2018 3:23 AM

独立于 ECMA-262 的规范 ECMA-402,专门处理 js 中语言敏感的部分

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl

Intl.Collator 字符比较

Intl.NumberFormat 数字格式 // 如添加货币符号,但注意没有汇率转换

Intl.DateTimeFormat 日期格式化

Intl.PluralRules 识别复数还是单数 // 需要自己来完成格式化

Intl.ListFormat 列表格式

Intl.RelativeTimeFormat 相对时间格式

Intl.Segmenter 分词分句 // https://code.google.com/archive/p/v8-i18n/wikis/BreakIterator.wiki

Intl.DisplayNames 显示区域名称

Intl.DateTimeFormat#formatRange 时间范围

dateStyle and timeStyle options for Intl.DateTimeFormat

https://v8.dev/blog/intl,所以 Intl 格式化比用 Date 对象快

SuperMade with Super