gpt4 book ai didi

javascript - 'Date.toLocaleString()' 有哪些选项?

转载 作者:行者123 更新时间:2023-12-05 00:26:04 24 4
gpt4 key购买 nike

根据MDN documentation对于 Date.toLocaleString() ,第二个参数是 options范围:

toLocaleString(locales, options)
他们在一个例子中使用:

let date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));

// Request a weekday along with a long date
let options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };

console.log(date.toLocaleString('de-DE', options));

我的问题是, options 的可能属性是什么?范围?

最佳答案

Intl.DateTimeFormat() constructor 相同。 ,其MDN documentation提供每个有效属性的列表和解释。
可能的属性如下:

  • dateStyle
  • timeStyle
  • calendar
  • dayPeriod
  • numberingSystem
  • localeMatcher
  • timeZone
  • hour12
  • hourCycle
  • formatMatcher
  • weekday
  • era
  • year
  • month
  • day
  • hour
  • minute
  • second
  • fractionalSecondDigits
  • timeZoneName
  • 关于javascript - 'Date.toLocaleString()' 有哪些选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69238860/

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