NodeJS 中的时间格式化模块之moment

官方文档

  1. 安装
    $ sudo npm install moment
    
  2. 使用
     // NodeJS中引用
     var moment = require('moment');
     moment().format(); // 当前时间 2019-06-30T18:48:17+08:00
    
    
     
     
    
  3. 常用语法
    moment(); //可传入参数定义时区格式,默认为本地时区当前时间
    moment('2019-06-30T18:59:30');
    
    // 字符串转换日期
    moment(String, String);
    moment(String, String, String);
    moment(String, String, Boolean);
    moment(String, String, String, Boolean);
    
    // 2019-01-01T00:00:00+08:00 true:开启严格模式
    moment('01/01/2019', 'MM/DD/YYYY', true).format();
    
    // 判断字符串是否是一个日期
    moment("not a real date").isValid(); // false
    
    moment.utc(); // 转换为格林威治标准时间(GMT)当前时间
    moment.utc('2019-06-30T18:59:30');
    
    moment.parseZone(); // 转换时区格式,固定的时区偏移量
    moment.parseZone("2019-01-01T00:00:00-13:00");
    
    
    //获取格式化字符串
    moment().format();
    

你可能感兴趣的:(NodeJS 中的时间格式化模块之moment)