📜  Moment.js moment.minute() 方法

📅  最后修改于: 2022-05-13 01:56:40.086000             🧑  作者: Mango

Moment.js moment.minute() 方法

moment().minute()方法用于从当前时间获取分钟或设置分钟。

语法

moment().minute();

要么

moment().minutes();

参数:此方法接受您要设置分钟的单个参数编号,然后您将需要一个附加参数:

Number:取值范围为 0 到 59,用于在变量中设置分钟。

返回值:此函数以分钟为单位返回当前时间。

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

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

安装模块:

npm install moment

示例 1:以分钟为单位获取当前时间。

index.js
// Importing moment module
const moment = require('moment'); 
  
var a = moment().minutes();
  
console.log("minute is: ",a);


index.js
// Importing moment module
const moment = require('moment'); 
  
var a = moment().minutes(20);
// Printing the updated minutes
console.log(a);


使用以下命令运行index.js文件:

node index.js

输出:

minute is:  24

示例 2:设置分钟时间。

index.js

// Importing moment module
const moment = require('moment'); 
  
var a = moment().minutes(20);
// Printing the updated minutes
console.log(a); 

使用以下命令运行index.js文件:

node index.js

输出:

Moment<2021-02-10T22:20:29+05:30>

参考: https://momentjs.com/docs/#/get-set/minute/