我有一种情况,我正在尝试在EST时区中不的警报用户尝试在美国东部时间早上12点到美国东部时间凌晨3点之间提交帖子。
伪代码:
var systemTimeZone = get current EST time ??
var currentUserTime = new Date();
If(currentUserTime > 12am EST && < 3am EST){
// show alert modal
}
我如何实现这一目标,同时考虑夏令时。
答案 0 :(得分:1)
将moment.js与moment-timezone一起使用:
// get the current time in the user's local time zone
var nowLocal = moment();
// get the current time in the US Eastern time zone
var nowEastern = moment.tz("America/New_York");
// see if the time zone offsets match or not
if (nowLocal.utcOffset() != nowEastern.utcOffset())
{
// see if it's before 3:00 AM in the Eastern time zone
if (nowEastern.hour() < 3) // note: checking hour >= 0 would be redundant
{
alert("It's too early in New York!")
}
}
答案 1 :(得分:0)
我强烈建议您查看MomentJS之类的内容。进行日期\时间比较和格式化需要做很多工作。
利用时刻做我认为你正在努力实现的目标将是:
var serverTimeUtc = /* Get from server a UTC time */
var momentTime = moment(serverTimeUtc);
if (momentTime.hour() >= 0 && momentTime.hour() < 3) {
// Server event occurred between 12am and 3am local time
}
如果您只关心EST而不考虑当地时间,那么您必须进行一些时区转换,moment.tz可以提供帮助。
答案 2 :(得分:0)
以下代码将根据格林威治标准时间提供当前日期的时区偏移:
var today = Date.now();
today = new Date(today);
var systemTimeZone = today.getTimezoneOffset();
您只需要计算EST的时区偏移范围:Timezone Table
答案 3 :(得分:0)
此库为您提供用户所在时区的名称。如果它没有返回&#34; America / New York&#34;,您将知道该用户不在东部时间。