当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Moment.js moment().startOf()用法及代码示例


moment().startOf() 方法用于改变 Moment,以便将其设置为给定时间单位的开始。可用的时间单位可以是年、月、季度、周、日、小时、分钟和秒。

用法:

moment().startOf( String );

Parameters: 该方法接受如上所述和如下所述的单个参数:

  • String:它是将 Moment 对象设置为开始的时间单位。

返回值:此方法返回设置值后的变异 Moment。

注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。

Moment.js 可以使用以下命令安装:

moment模块的安装:

npm install moment

以下示例将演示 Moment.js moment().startOf() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
console.log("Current moment is:", moment().toString()); 
  
// This will set the moment to 12:00 am today 
console.log( 
    "startOf current moment's day:", 
    moment().startOf('day').toString() 
) 
  
// This will set the moment to the 
// first day and hour of this week 
console.log( 
    "startOf current moment's week:", 
    moment().startOf('week').toString() 
) 
  
// This will set the moment to the 
// first day and hour of this month 
console.log( 
    "startOf current moment's month:", 
    moment().startOf('month').toString() 
) 
  
// This will set the moment to the 
// beginning of the current quarter 
// 1st day and hour of month 
console.log( 
    "startOf current moment's quarter:", 
    moment().startOf('quarter').toString() 
) 
  
// This will set the moment to the 
// first day and hour of the year 
console.log( 
    "startOf current moment's year:", 
    moment().startOf('year').toString() 
)

输出:

Current moment is: Mon Jul 18 2022 02:33:56 GMT+0530
startOf current moment’s day: Mon Jul 18 2022 00:00:00 GMT+0530
startOf current moment’s week: Sun Jul 17 2022 00:00:00 GMT+0530
startOf current moment’s month: Fri Jul 01 2022 00:00:00 GMT+0530
startOf current moment’s quarter: Fri Jul 01 2022 00:00:00 GMT+0530
startOf current moment’s year: Sat Jan 01 2022 00:00:00 GMT+0530

示例 2:

Javascript


const moment = require('moment'); 
  
console.log("Current moment is:", 
    moment().toString()); 
  
// This will set the moment to the 
// first millisecond of the second  
console.log( 
    "startOf current moment's second:", 
    moment().startOf('second').toString() 
) 
  
// This will set the moment to the 
// first second of the minute  
console.log( 
    "startOf current moment's minute:", 
    moment().startOf('minute').toString() 
) 
  
// This will set the moment to the  
// first minute of the hour  
console.log( 
    "startOf current moment's hour:", 
    moment().startOf('hour').toString() 
)

输出:

Current moment is: Mon Jul 18 2022 02:33:56 GMT+0530
startOf current moment’s second: Mon Jul 18 2022 02:33:56 GMT+0530
startOf current moment’s minute: Mon Jul 18 2022 02:33:00 GMT+0530
startOf current moment’s hour: Mon Jul 18 2022 02:00:00 GMT+0530

参考:https://momentjs.com/docs/#/manipulating/start-of/



相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().startOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。