おそらくこれに対する簡単な答えですが、moment.jsがUTC日時をミリ秒単位で返すようにする方法を見つけることができないようです。これが私がしていることです:
var date = $("#txt-date").val(),
expires = moment.utc(date);
私が間違っていることについて何か考えはありますか?
おそらくこれに対する簡単な答えですが、moment.jsがUTC日時をミリ秒単位で返すようにする方法を見つけることができないようです。これが私がしていることです:
var date = $("#txt-date").val(),
expires = moment.utc(date);
私が間違っていることについて何か考えはありますか?
回答:
これはドキュメントにあります。瞬間のようなライブラリがあるので、ドキュメント全体を読むことをお勧めします。それは本当に重要です。
入力テキストがユーザーの現地時間で入力されていると仮定します。
var expires = moment(date).valueOf();
ユーザーが実際にUTCの日付/時刻を入力するように指示された場合は、次のようにします。
var expires = moment.utc(date).valueOf();
.utc()
.format()
、UTC値を出力するなどのメソッドの1つを呼び出します。aはすでにUTCタイムスタンプを追跡しているため、内部の日付値自体を変更することはできませんDate
。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
です。2つ目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()
両方のUTC(それが標準だ)1970年1月1日からのミリ秒を返す