对此可能是简单的答案,但我似乎找不到任何方法使moment.js返回以毫秒为单位的UTC日期时间。这是我在做什么:
var date = $("#txt-date").val(),
expires = moment.utc(date);
知道我在做什么错吗?
Answers:
这可以在文档中找到。借助像片刻的图书馆,我敦促您阅读整个文档。这是真正重要的。
假设输入的文本是根据用户的本地时间输入的:
var expires = moment(date).valueOf();
如果指示用户实际输入UTC日期/时间,则:
var expires = moment.utc(date).valueOf();
.utc()
.format()
,它将发出UTC值。它不能更改内部日期值本身,因为aDate
已经在跟踪UTC时间戳。始终只是调用它的方法来确定是发出UTC还是本地时间。在这一点上,时刻是相同的。
我使用这种方法,它的工作原理。ValueOf对我不起作用。
moment.utc(yourDate).format()
作为 : moment.js version 2.24.0
假设您有本地日期输入,这是将dateTime或Time输入转换为UTC的正确方法 :
var utcStart = new moment("09:00", "HH:mm").utc();
或指定日期
var utcStart = new moment("2019-06-24T09:00", "YYYY-MM-DDTHH:mm").utc();
如您所见,结果输出将以UTC返回:
//You can call the format() that will return your UTC date in a string
utcStart.format();
//Result : 2019-06-24T13:00:00
但是,如果您按以下方式进行操作,它将不会转换为UTC:
var myTime = new moment.utc("09:00", "HH:mm");
您只将输入设置为utc时间,就好像您提到myTime是UTC一样,....输出将是9:00
moment.utc(date).format(...);
是要走的路,因为
moment().utc(date).format(...);
确实很奇怪...
moment().utc(date).format(...)
?
moment.utc(date)
是解析的date
。第二个moment().utc(date)
是用于操纵当前时间(moment()
)的date
参数,该参数是无用的,因为.utc()
在这种情况下,该参数不需要任何参数。
如果其他所有方法均失败,则只需使用本地偏移量的反函数重新初始化即可。
var timestamp = new Date();
var inverseOffset = moment(timestamp).utcOffset() * -1;
timestamp = moment().utcOffset( inverseOffset );
timestamp.toISOString(); // This should give you the accurate UTC equivalent.
keepOffset
参数设置为true,例如moment(timestamp).toISOString(true)
,
在这里,我传递了日期对象并将其转换为UTC时间。
$.fn.convertTimeToUTC = function (convertTime) {
if($(this).isObject(convertTime)) {
return moment.tz(convertTime.format("Y-MM-DD HH:mm:ss"), moment.tz.guess()).utc().format("Y-MM-DD HH:mm:ss");
}
};
// Returns if a value is an object
$.fn.isObject = function(value) {
return value && typeof value === 'object';
};
//you can call it as below
$(this).convertTimeToUTC(date);
在此处阅读一下moment.js的文档。请参见下面的示例和输出,其中我将GMT时间转换为本地时间(我的区域是IST),然后将本地时间转换为GMT。
// convert GMT to local time
console.log('Server time:' + data[i].locationServerTime)
let serv_utc = moment.utc(data[i].locationServerTime, "YYYY-MM-DD HH:mm:ss").toDate();
console.log('serv_utc:' + serv_utc)
data[i].locationServerTime = moment(serv_utc,"YYYY-MM-DD HH:mm:ss").tz(self.zone_name).format("YYYY-MM-DD HH:mm:ss");
console.log('Converted to local time:' + data[i].locationServerTime)
// convert local time to GMT
console.log('local time:' + data[i].locationServerTime)
let serv_utc = moment(data[i].locationServerTime, "YYYY-MM-DD HH:mm:ss").toDate();
console.log('serv_utc:' + serv_utc)
data[i].locationServerTime = moment.utc(serv_utc,"YYYY-MM-DD HH:mm:ss").format("YYYY-MM-DD HH:mm:ss");
console.log('Converted to server time:' + data[i].locationServerTime)
输出为
Server time:2019-12-19 09:28:13
serv_utc:Thu Dec 19 2019 14:58:13 GMT+0530 (India Standard Time)
Converted to local time:2019-12-19 14:58:13
local time:2019-12-19 14:58:13
serv_utc:Thu Dec 19 2019 14:58:13 GMT+0530 (India Standard Time)
Converted to server time:2019-12-19 09:28:13
您不需要进行比较然后检索毫秒的内容吗?
例如:
let enteredDate = $("#txt-date").val(); // get the date entered in the input
let expires = moment.utc(enteredDate); // convert it into UTC
这样,您就有了UTC的到期日期。现在,您可以在UTC中获得“即时”日期并进行比较:
var rightNowUTC = moment.utc(); // get this moment in UTC based on browser
let duration = moment.duration(rightNowUTC.diff(expires)); // get the diff
let remainingTimeInMls = duration.asMilliseconds();
moment.valueOf()
和(new Date()).getTime()
都返回毫秒自1970年1月1日UTC(这是一个标准)