아마도 이것에 대한 쉬운 대답이지만 moment.js가 UTC 날짜 시간을 밀리 초 단위로 반환하도록하는 방법을 찾지 못하는 것 같습니다. 내가하는 일은 다음과 같습니다.
var date = $("#txt-date").val(),
expires = moment.utc(date);
내가 뭘 잘못하고 있는지 아십니까?
아마도 이것에 대한 쉬운 대답이지만 moment.js가 UTC 날짜 시간을 밀리 초 단위로 반환하도록하는 방법을 찾지 못하는 것 같습니다. 내가하는 일은 다음과 같습니다.
var date = $("#txt-date").val(),
expires = moment.utc(date);
내가 뭘 잘못하고 있는지 아십니까?
답변:
.utc()
.format()
UTC 값을 방출 하는와 같은 메소드 중 하나를 호출 합니다. 그것은 할 수없는 A가 있기 때문에, 내부 날짜 값 자체를 변경 Date
이미 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 (이것은 표준이기) 때문에 모두 반환 밀리 초