moment().date() 方法用於獲取或設置 Moment 對象所在月份的日期。設置日期的範圍可以在 1 到 31 之間。超出範圍時,日期將延長到上個月或下個月。對於沒有全部 31 天的月份也是如此,因此當使用較大的值時將轉到下個月。
用法:
moment().date( Number );
參數:該方法接受如上所述和如下所述的單個參數:
- Number: 它是必須為 Moment 對象設置的月份中的某一天。它是一個可選參數。
返回值:此方法返回 Moment 所在月份的日期。
注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。
Moment.js 可以使用以下命令安裝:
moment模塊的安裝:
npm install moment
以下示例將演示 Moment.js moment().date() 方法。
示例 1:
Javascript
const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current date is:", moment().date())
let date10 = moment().date(10);
console.log(
"Moment with date of 10 is:",
date10.toString()
)
let date30 = moment().date(30);
console.log(
"Moment with date of 30 is:",
date30.toString(
))
輸出:
Current Date: Mon Jul 18 2022 01:49:32 GMT+0530
Current date is: 18
Moment with date of 10 is: Sun Jul 10 2022 01:49:32 GMT+0530
Moment with date of 30 is: Sat Jul 30 2022 01:49:32 GMT+0530
示例 2:
Javascript
const moment = require('moment');
let momentX = moment().year(2019).month(6).date(5);
console.log("momentX Date:", momentX.toString())
console.log("momentX date is:", momentX.date())
let date45 = momentX.date(45);
console.log(
"momentX with date of 45 is:",
date45.toString()
)
let negativeDate45 = momentX.date(-45);
console.log(
"momentX with date of -45 is:",
negativeDate45.toString()
)
輸出:
momentX Date: Fri Jul 05 2019 01:49:32 GMT+0530
momentX date is: 5
momentX with date of 45 is: Wed Aug 14 2019 01:49:32 GMT+0530
momentX with date of -45 is: Sun Jun 16 2019 01:49:32 GMT+0530
參考:https://momentjs.com/docs/#/get-set/date/
相關用法
- Moment.js moment().daysInMonth()用法及代碼示例
- Moment.js moment().dayOfYear()用法及代碼示例
- Moment.js moment().day()用法及代碼示例
- Moment.js moment().diff()用法及代碼示例
- Moment.js moment().calender()用法及代碼示例
- 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().get()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().date() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。