moment().utc()方法用于指定给定 Moment 对象的时区将显示为 UTC。可以传递一个可选参数来保留当前时间值并且仅将时区更改为 UTC。
用法:
moment().utc( Boolean );
Parameters:
- Boolean:它是一个布尔值,指定是否在不更改实际时间本身的情况下更改时区。
返回值:
此方法返回具有新时区的 Moment 对象。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
安装节点应用程序的步骤:
步骤1:运行以下命令 初始化项目并创建索引文件和环境文件。 (确保你已经安装了node和npm)
npm init -y
第2步:安装所需的包
npm install moment
项目结构:
更新后的依赖项在package.json文件看起来像:
"dependencies": {
"moment": "^2.30.1",
}
示例 1:此示例显示了 moment 的使用并在控制台中打印时间。
Javascript
const moment = require('moment');
let momentOne = moment();
console.log(
"MomentOne is:", momentOne.toString()
);
console.log(
"MomentOne hours:", momentOne.hours())
;
console.log(
"MomentOne minutes:", momentOne.minutes()
);
// Display utc format of the Moment
momentOne.utc()
console.log(
"MomentOne is:", momentOne.toString()
);
console.log(
"MomentOne hours in UTC:", momentOne.hours()
);
console.log(
"MomentOne minutes in UTC:", momentOne.minutes()
);
输出:
MomentOne is: Tue Nov 21 2023 14:07:18 GMT+0000
MomentOne hours: 14
MomentOne minutes: 7
MomentOne is: Tue Nov 21 2023 14:07:18 GMT+0000
MomentOne hours in UTC: 14
MomentOne minutes in UTC: 7
示例 2:此示例显示了 moment 的使用并在控制台中打印时间。
Javascript
const moment = require('moment');
let momentTwo = moment();
console.log(
"MomentTwo is:", momentTwo.toString()
);
console.log(
"MomentTwo hours:", momentTwo.hours())
;
console.log(
"MomentTwo minutes:", momentTwo.minutes()
);
// Change the timezone flag, without changing the time
// by passing the Boolean value to true
momentTwo.utc(true)
console.log(
"MomentTwo is:", momentTwo.toString()
);
console.log(
"MomentTwo hours in UTC:", momentTwo.hours()
);
console.log(
"MomentTwo minutes in UTC:", momentTwo.minutes()
);
输出:
MomentTwo is: Tue Nov 21 2023 14:07:49 GMT+0000
MomentTwo hours: 14
MomentTwo minutes: 7
MomentTwo is: Tue Nov 21 2023 14:07:49 GMT+0000
MomentTwo hours in UTC: 14
MomentTwo minutes in UTC: 7
相关用法
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().unix()用法及代码示例
- Moment.js moment().calender()用法及代码示例
- Moment.js moment().daysInMonth()用法及代码示例
- Moment.js moment().diff()用法及代码示例
- Moment.js moment().format()用法及代码示例
- Moment.js moment().from()用法及代码示例
- Moment.js moment().fromNow()用法及代码示例
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().set()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
注:本文由纯净天空筛选整理自佚名大神的英文原创作品 Moment.js moment().utc() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。