英文:
Intl.DateTimeFormat does not bother about '2-digit' or 'numeric'
问题
I want to use IntlDateTimeFormat to provide leading zeros.
My code is:
const timeFormatter = Intl.DateTimeFormat(undefined, { minute: '2-digit' });
const date = new Date();
date.setMinutes(4);
console.log(timeFormatter.format(date)); // PRINTS: 4 and not 04
However, when I add second: '2-digit'
to the options object. Then it works fine, but also prints seconds (Yes, I can remove it using replace).
What's the difference between '2-digit' and 'numeric' then?
I am ignoring padStart, as of now.
I tried to change the configuration back to 'numeric' instead of '2-digit'. There seems no difference.
英文:
I want to use IntlDateTimeFormat to provide leading zeros.
My code is:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const timeFormatter = Intl.DateTimeFormat(undefined,{minute: '2-digit'});
const date = new Date();
date.setMinutes(4);
console.log(timeFormatter.format(date)); // PRINTS: 4 and not 04
<!-- end snippet -->
However, when I add second: '2-digit'
to the options object. Then it works fine, but also prints seconds (Yes, I can remove it using replace).
What's the difference between '2-digit' and 'numeric' then?
I am ignoring padStart, as of now.
I tried to change the configuration back to 'numeric' instead of '2-digit'. There seems no difference
答案1
得分: 2
"2-digit" 和 "numeric" 之间的区别是什么?
并非所有选项都适用于所有串行化的选项组合。
仅对于支持在特定语言中序列化2位数分钟的格式,该设置控制分钟是否以1位数或2位数表示。
由Intl.DateTimeFormat.prototype.format()
生成的格式化字符串既依赖于实现又依赖于语言,因此不适合生成需要精确匹配模式的字符串。
其他组合可能也会产生意料之外的字符串:
const date = new Date(2023, 4, 10, 16, 4, 8);
const printFormatted = (opts) => console.log(new Intl.DateTimeFormat(undefined, opts).format(date));
printFormatted({ minute: "2-digit" });
printFormatted({ minute: "numeric", second: "numeric" });
printFormatted({ minute: "numeric", weekday: "long" });
printFormatted({ minute: "2-digit", weekday: "long" });
根据您问题中的示例代码:如果您的目标是将1位数或2位数的整数转换为具有前导零的2位数字符串,那么String.prototype.padStart()
是惯用的解决方案:
const date = new Date(2023, 4, 10, 16, 4, 8);
const zeroFour = String(date.getMinutes()).padStart(2, "0");
console.log(zeroFour); // 04
英文:
> What's the difference between '2-digit' and 'numeric'?
Not all options apply to all serializations for all option combinations.
For (only) the formats which are implemented to support serializing 2-digit minutes in a given language, that setting controls whether or not the minutes will be represented as 1 or 2 digits.
Formatted strings produced by Intl.DateTimeFormat.prototype.format()
are both implementation- and language-dependent, so they are not appropriate for producing strings which need to match exact schemas.
Other combinations might also produce strings you don't expect:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const date = new Date(2023, 4, 10, 16, 4, 8);
const printFormatted = (opts) => console.log(new Intl.DateTimeFormat(undefined, opts).format(date));
printFormatted({ minute: "2-digit" });
printFormatted({ minute: "numeric", second: "numeric" });
printFormatted({ minute: "numeric", weekday: "long" });
printFormatted({ minute: "2-digit", weekday: "long" });
<!-- end snippet -->
Based on the example code in your question: if your goal is to convert a 1-digit or 2-digit integer to a 2-digit string with a leading 0, then String.prototype.padStart()
is the idiomatic solution:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const date = new Date(2023, 4, 10, 16, 4, 8);
const zeroFour = String(date.getMinutes()).padStart(2, "0");
console.log(zeroFour); // 04
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论