npm install moment
计算两个时间的差:moment(time1).diff(time2, type, boolean)
time1和time2支持类型:Moment|String|Number|Date|Array;
type支持值为:years, months, weeks, days, hours, minutes, seconds;
第三个参数默认为false,即为计算结果向下取整(3.2=3; 3.9=3)
例如:计算当前时间距离2018年1月1号的 天数
moment().diff('2018-01-01', 'days'); // 整数 moment().diff('2018-01-01', 'days', true); // 小数
格式化时间: moment(time).format()
例如:‘2018-05-21’转换为‘20180521’
moment('2018-05-21').format('YYYYMMDD'); // 注意YYYYMMDD一定为大写才有效
获取+n时间:moment(time).add(num, type)
nums:时间差值,Number类型
type可选枚举值:year,month,week,day,hour,minute,second
moment().add(5, 'day'); // 往后5天
moment().add(-5, 'day'); // 往前5天
获取-n时间:moment(time).subtract(num, type) // 参数解释 同上
moment().subtract(3, 'day'); // 往前3天
moment().subtract(-3, 'day'); // 往后3天
获取年月日
moment('2018-02-05 10:30:15').year() // 2018
moment('2018-02-05 10:30:15').month() // 2
moment('2018-02-05 10:30:15').day() // 5
作者:小猫吃鱼1990
链接:https://www.jianshu.com/p/c34eacb3be20
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。