moment().get() 方法用于从 Moment 对象获取给定的时间单位(字符串形式)。该单位可以以单位的所有公认变体形式指定,包括其复数形式和缩写形式。它可用于返回年、月、日、小时、分钟和毫秒的值。
用法:
moment().get( unit );
Parameters: 该方法接受如上所述和如下所述的单个参数:
- unit: 它是一个字符串,表示从 Moment 对象返回的时间单位。
返回值:此方法从 Moment 对象返回给定时间单位的字符串。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().get() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
console.log(
"momentOne date:", momentOne.get('date')
)
console.log(
"momentOne month:", momentOne.get('month')
)
console.log(
"momentOne year:", momentOne.get('year')
)
let momentTwo =
moment()
.clone()
.add(8, 'days')
.add(5, 'months');
console.log(
"momentTwo date:", momentTwo.get('D')
)
console.log(
"momentTwo month:", momentTwo.get('M')
)
console.log(
"momentTwo year:", momentTwo.get('Y')
)
输出:
momentOne date: 11 momentOne month: 6 momentOne year: 2022 momentTwo date: 19 momentTwo month: 11 momentTwo year: 2022
示例 2:
Javascript
const moment = require('moment');
let momentA = moment();
console.log(
"momentA hours:", momentA.get('hour')
)
console.log(
"momentA minutes:", momentA.get('minute')
)
console.log(
"momentA seconds:", momentA.get('second')
)
console.log(
"momentA milliseconds:", momentA.get('millisecond')
)
let momentB = moment()
.clone()
.add(10, 'hours')
.add(100, 'millisecond');
console.log(
"momentB hours:", momentB.get('H')
)
console.log(
"momentB minutes:", momentB.get('m')
)
console.log(
"momentB seconds:", momentB.get('s')
)
console.log(
"momentB milliseconds:", momentB.get('ms')
)
输出:
momentA hours: 1 momentA minutes: 54 momentA seconds: 39 momentA milliseconds: 237 momentB hours: 11 momentB minutes: 54 momentB seconds: 39 momentB milliseconds: 338
参考:https://momentjs.com/docs/#/get-set/get/
相关用法
- 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().unix()用法及代码示例
- 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().startOf()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
- Moment.js moment().isoWeek()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().get() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。