タイムスタンプと日付の切り替え

814 ワード

最近のプロジェクトの再構成の過程で、いくつかの様々な原因で大量のタイムスタンプと日付書式の相互回転が発生しました.この方法を記録して調べやすいです.
//            
function timestampToTime(timestamp) {
  var date = new Date(timestamp * 1000);
  var Y = date.getFullYear() + "-";
  var M =
    (date.getMonth() + 1 < 10
      ? "0" + (date.getMonth() + 1)
      : date.getMonth() + 1) + "-";
  var D = date.getDate() + " ";
  var h = date.getHours() + ":";
  var m = date.getMinutes() + ":";
  var s = date.getSeconds();
  return Y + M + D + h + m + s;
}

let res = timestampToTime(1587225600)
console.log(res)
//      timestamp = '2020-06-06 08:20:34'
timeToTimestamp(timestamp){
    var date = new Date(timestamp); //    
    var time1 = date.getTime(); //      
    return time1
},