js時間戳轉日期,日期轉時間戳,時間戳轉天數


時間戳轉日期

//parseInt()字符串轉數字
//new Date()放入時間戳,沒有放默認當前時間
this.tableData[i].createTime = this.formatDate(new Date(parseInt(this.tableData[i].createTime)))

// 時間戳轉換日期格式
    formatDate(now) {
      var year = now.getFullYear();  //取得4位數的年份
      var month = now.getMonth() + 1;  //取得日期中的月份,其中0表示1月,11表示12月
      var date = now.getDate();      //返回日期月份中的天數(1到31)
      var hour = now.getHours();     //返回日期中的小時數(0到23)
      var minute = now.getMinutes(); //返回日期中的分鍾數(0到59)
      var second = now.getSeconds(); //返回日期中的秒數(0到59)
      return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
    }

日期轉時間戳轉天數

let day=(Date.parse(val)-Date.parse(this.addForm.checkCycleStart))/(1*24*60*60*1000);

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM