我要求用户在我的应用程序中输入日期和时间。用户将根据它们所在的时区输入时间。当我将此日期和时间保存到我的数据库时,我想将时间转换为UTC,以便当我按时间查询(以UTC完成)时,我可以找到条目。
这就是我目前所做的:
var date = new Date();
var dateString = "0" + (date.getMonth() + 1) + "/" + date.getDate() + "/" + date.getFullYear() + " " + time;
//format date
date = moment(dateString, "MM/DD/YYYY HH:mm a");
date = new Date(date).toISOString();
时间是用户输入的时间(如果我想在上午11:00安排时间,时间=上午11:00)
当它保存到数据库时,它看起来像:
ISODate("2016-05-09T11:00:00Z")
这是不正确的,因为这是一个保存为Zulu时间的EST。
如何将时间(我正在使用的时间)转换为正确的Zulu时间?
答案 0 :(得分:3)
一种选择是使用Javascript的内置UTC功能。
getUTCDate() - Returns the day of the month, according to universal time (from 1-31)
getUTCDay() - Returns the day of the week, according to universal time (from 0-6)
getUTCFullYear()- Returns the year, according to universal time
getUTCHours() - Returns the hour, according to universal time (from 0-23)
getUTCMilliseconds() - Returns the milliseconds, according to universal time (from 0-999)
getUTCMinutes() - Returns the minutes, according to universal time (from 0-59)
getUTCMonth() - Returns the month, according to universal time (from 0-11)
getUTCSeconds() - Returns the seconds, according to universal time (from 0-59)
例如,
new Date('2016-05-09 10:00:00')
returns Mon May 09 2016 10:00:00 GMT-0400
new Date('2016-05-09 10:00:00').getUTCHours()
returns 14
更新:示例(包括.toISOString())
如果我们选择2016年7月4日美国东部时间晚上8点(GMT-0400),UTC将于2016年7月5日@00:00(午夜):
var date = new Date('2016-07-04 20:00:00')
date.getUTCFullYear = 2016
date.getUTCMonth = 6 (0 base)
date.getUTCDate = 5
date.getUTCHours = 0
date.getUTCMinutes = 0
var date = new Date('2016-07-04 20:00:00')
date.toISOString() = "2016-07-05T00:00:00.000Z" (UTC)
答案 1 :(得分:0)
要解决此问题,我使用了时刻时区库。
我首先在服务器上设置时区,因为它只能被EST访问:
moment.tz.setDefault("America/New_York");
然后我需要做的就是通过以下方式将当前对象的时区设置为UTC:
date = moment(dateString, "MM/DD/YYYY HH:mm a").tz("UTC");
这成功地将时间从EST转换为UTC