如何接受作为 UTC 的值?
How to accept the value as UTC?
使用 MomentJS + ReactJS:目前我有以下但它接受本地时间的值。
如何让它接受 UTC date/time 而不是本地 date/time 的值?
var dateTime = new Date("11 30 2016 00:00:00")
//Logs as: `Wed Nov 30 2016 00:00:00 GMT-0800 (PST)` but would want it to just accept the value as is in GMT/UTC rather than PST, local date/time/
一定会点赞的。谢谢
您正在创建一个新的原生 javascript 日期对象而不是 "Moment" 实例。
由于您使用的是 Moment,您可能想改用 moment.utc()
。方法上有documentation here
在你的例子中:
var time = moment.utc("11-30-2016 00:00:00");
使用 MomentJS + ReactJS:目前我有以下但它接受本地时间的值。
如何让它接受 UTC date/time 而不是本地 date/time 的值?
var dateTime = new Date("11 30 2016 00:00:00")
//Logs as: `Wed Nov 30 2016 00:00:00 GMT-0800 (PST)` but would want it to just accept the value as is in GMT/UTC rather than PST, local date/time/
一定会点赞的。谢谢
您正在创建一个新的原生 javascript 日期对象而不是 "Moment" 实例。
由于您使用的是 Moment,您可能想改用 moment.utc()
。方法上有documentation here
在你的例子中:
var time = moment.utc("11-30-2016 00:00:00");