我有一个特殊的用例,应用程序总是必须在America/Chicago
时区使用时间。所以我将 Moment 默认时区设置为moment.tz.setDefault("America/Chicago");
.
通过此设置,我将所有日期时间输入从客户端以America/Chicago
js 格式发送到时区的服务器MM/DD/YYYY h:mm A
。每当客户端请求时间字段时,服务器都会以时America/Chicago
区和相同的格式返回时间。
现在有一种情况,我必须解析服务器返回的这个日期时间值并将其与当前America/Chicago
时间进行比较。我试过这个,
moment.tz.setDefault("America/Chicago");
let now = moment();
// serverResponse is America/Chicago datetime string in format MM/DD/YYYY h:mm A
let serverResponseMoment = moment(serverResponse);
// The above statement is where I am facing issue. Since the users could be from
// anywhere, moment(serverResponse) will be assuming the serverResponse string to
// be of the local timezone as there is no offset part attached to the string.
return now.isBefore(serverResponseMoment);
也试过
let serverResponseMoment = moment.tz(serverResponse,"America/Chicago");
// The above statement assumes the serverResponse to be in UTC and give me an "America/Chicago"
// date-time after conversion
我也试过了moment.utc(serverResponse)
。执行最后一次条件检查时,所有解析都失败。
我想要的是一个时刻实例,在已经设置的默认时区中,将我serverResponse
作为基础 DateTime。
或一些这样做的声明
Hey Moment, serverResponse is already in "America/Chicago" timezone, you don't have to make any sort of timezone assumptions. Just parse it and return an instance of yourself
有任何想法吗?
谢谢