admin管理员组文章数量:1341686
I'm trying to check for isDST() (returns true or false if daylight saving time is active). It works fine if I use the current date time- for example var isdst = moment().isDST() returns true for my timezone. However, what I want to do is first set the timezone offset and then check to see if daylight saving time is active in that timezone. I have the following code below.
var isdst = moment('2014-03-28').zone('+01:00');
console.log('daylight savings for +0100 is ' + isdst); //returns true when it should return false
If you look at the DST time for timezone +0100 (European Union countries) it does not e into effect until March 30, 2014. However, the code above returns true for March 28 when in fact should not (until 2 days later). You can check the DST for different countries here .html
I did some more testing and it seems that the code is taking into account my own timezone (US Eastern Standard) when it runs. If you see the site above, the Eastern Standard daylight saving begins on March 9, 2014. If I test the code a couple days previous to March 9 it returns false (i.e. March 8). If I test it with March 11 it returns true. This tells me that it is not taking into account the zone("+0100") and somehow using my timezone...why? How can I set the timezone for a momentjs date? I looked in the documentation (/) and it says that this is the correct way, but it is not working for me.
I'm trying to check for isDST() (returns true or false if daylight saving time is active). It works fine if I use the current date time- for example var isdst = moment().isDST() returns true for my timezone. However, what I want to do is first set the timezone offset and then check to see if daylight saving time is active in that timezone. I have the following code below.
var isdst = moment('2014-03-28').zone('+01:00');
console.log('daylight savings for +0100 is ' + isdst); //returns true when it should return false
If you look at the DST time for timezone +0100 (European Union countries) it does not e into effect until March 30, 2014. However, the code above returns true for March 28 when in fact should not (until 2 days later). You can check the DST for different countries here http://www.worldtimezone./daylight.html
I did some more testing and it seems that the code is taking into account my own timezone (US Eastern Standard) when it runs. If you see the site above, the Eastern Standard daylight saving begins on March 9, 2014. If I test the code a couple days previous to March 9 it returns false (i.e. March 8). If I test it with March 11 it returns true. This tells me that it is not taking into account the zone("+0100") and somehow using my timezone...why? How can I set the timezone for a momentjs date? I looked in the documentation (http://momentjs./docs/) and it says that this is the correct way, but it is not working for me.
Share Improve this question asked Jun 2, 2014 at 14:58 user1142130user1142130 1,6453 gold badges20 silver badges36 bronze badges1 Answer
Reset to default 11A time zone is not the same as an offset. UTC+01:00 applies to many different time zones, some use daylight saving time and some do not. Those that use it do not all apply it at the same time either. See "Time zone != Offset" in the timezone tag wiki.
Moment's "zone" function is really for specifying an offset. It will still use your own local DST rules.
If you want to know about DST rules for another time zone, you have to specify that zone using the moment-timezone add-on. For example:
var tz = 'Europe/Paris'; // or whatever your time zone is
var dt = '2014-05-14 12:34:56'; // or whatever date/time you're working with
moment.tz(dt,tz).isDST() // returns true in this case
本文标签: javascriptWhy does momentjs isDST() return wrong time when zone() is usedStack Overflow
版权声明:本文标题:javascript - Why does momentjs isDST() return wrong time when zone() is used - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743633926a2513579.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论