nodejs的moment操作時間

2021-10-04 14:44:00 字數 916 閱讀 5990

var moment = require('moment');

console.log(moment().format("yyyy-mm-dd hh:mm:ss")); //當前時間 (24小時制)

console.log(moment().add(1, "hours").format("yyyy-mm-dd hh:mm:ss")); //當前時間增加1小時

console.log(moment().add(1, "months").format("yyyy-mm-dd hh:mm:ss")); //當前時間增加1個月

console.log(moment().subtract(10, "days").format("yyyy-mm-dd hh:mm:ss")); //當前時間的前10天時間

console.log(moment().subtract(1, "years").format"yyyy-mm-dd hh:mm:ss")); //當前時間的前1年時間

console.log(moment().subtract(3, "months").format("yyyy-mm-dd hh:mm:ss")); //當前時間的前3個月時間

console.log(moment().subtract(1, "weeks").format("yyyy-mm-dd hh:mm:ss")); //當前時間的前乙個星期時間

moment(req.body.renewstarttime).startof('month').format("yyyy-mm-dd")+" 00:00:00"; //獲取月的開始時間

moment(req.body.renewendtime).endof('month').format("yyyy-mm-dd")+" 23:59:59"; //獲取月的結束時間

nodejs 操作moment時間

var moment require moment console.log moment format yyyy mm dd hh mm ss 當前時間 24小時制 console.log moment add 1,hours format yyyy mm dd hh mm ss 當前時間增加1小時...

nodejs的moment操作時間

var moment require moment console.log moment format yyyy mm dd hh mm ss 當前時間 24小時制 console.log moment add 1,hours format yyyy mm dd hh mm ss 當前時間增加1小時...

Nodejs中流的操作

fs與流都可以處理檔案,為什麼還要用流 fs模組處理檔案的缺點 將檔案的資料全讀到記憶體中,在把資料寫到檔案內,會大量占用記憶體 流 流 stream 是 node.js 中處理流式資料的抽象介面,是一組有序的,有起點和終點的位元組資料傳輸手段。可以實現將資料從乙個地方流動到另乙個地方,其邊讀取邊寫...