如何获取时刻时区当前配置的时区?

How to get moment-timezone current configured timezone?

所以当我们使用 moment-timezone 配置默认时区时,我们会做这样的事情:

moment.tz.setDefault('America/Sao_Paulo')

我正在寻找一种从 moment.tz 对象中检索该值 (America/Sao_Paulo) 的方法...我无法在他们的 documentation page 上找到它:/我假设它类似于 moment.tz.getCurrent() // America/Sao_Paulo

顺便说一句,这与 moment.tz.guess() 不同,因为我不想要用户的本地时区,我想要的是当前配置的时区,而不考虑浏览器的时区。

我也有类似的情况。在您猜测时区后设置的时刻似乎有一个未记录的属性。

moment.defaultZone

还没有找到它如何与其他时刻时区方法一起使用。