Display users local zone abbreviation

后端 未结 5 1940
耶瑟儿~
耶瑟儿~ 2020-12-17 10:17

I was trying to use z or zz in format to display the timezone at the end of the string and found that it\'s deprecated. Z and ZZ

5条回答
  •  猫巷女王i
    2020-12-17 10:54

    From the latest moment timezone docs

    moment.tz(String).format("Z z"); // -08:00 PST
    moment.tz(String).zoneAbbr();    // PST
    moment.tz(String).zoneName();    // PST
    

    Some examples:

    moment.tz(moment.tz.guess()).zoneAbbr(); // PST
    moment.tz("America/New_York").zoneAbbr(); // EST
    

提交回复
热议问题