gpt4 book ai didi

JavaScript Date.toLocaleDateString() - 仅设置选项

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:44:31 25 4
gpt4 key购买 nike

情况:我想使用 JavaScript 函数 Date.toLocaleDateString() 以用户首选的语言环境显示日期。到目前为止一切顺利,但我想使用 2-digit 选项显示月份和日期。

据我所知,您必须使用 Date.toLocaleDateString(locale, options) 来显示选项,但是我应该为 locale 选项使用哪个值? toLocaleDateString() 在内部读取哪个变量来设置语言环境,以便我可以读出它并将其传递给带有 2 个参数的函数调用?

最佳答案

来自 the specification of toLocaleDateString :

  1. If locales is not provided, then let locales be undefined.

这意味着您可以自己将其设置为 undefined 而不会产生不良影响。这由 MDN reference documentation 支持:

If the locales argument is not provided or is undefined, the runtime's default locale is used.

所以你可以调用它:

Date.toLocaleDateString(undefined, options);

获取默认语言环境,就像您调用它时不带参数一样。

关于JavaScript Date.toLocaleDateString() - 仅设置选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31873544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com