nodejs 操作moment時間

2021-09-25 08:19:00 字數 858 閱讀 3755

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")); //當前時間的前乙個星期時間

//---------定義

exports.formattime = time => moment(time).format('yyyy-mm-dd hh:mm:ss');

const time = '2019-12-12 12:12:12';

console.log(this.formattime(time));

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 基本操作

檢視nodejs版本 nodejs v 公升級nodejs node有乙個模組叫n 這名字可夠短的。是專門用來管理node.js的版本的。首先安裝n模組 npm install g n 第二步 公升級node.js到最新穩定版 n stable npm v 顯示版本,檢查npm 是否正確安裝。npm...