moment().set()方法用於為Moment對象設置給定的時間單位。該單位可以以單位的所有公認變體形式指定,包括其複數形式和縮寫形式。還可以使用包含所有所需時間單位的對象來設置時間。
用法:
moment().set(String, Int)
OR
moment().set(Object(String, Int))
參數:該方法接受如上所述和如下所述的兩個參數:
- String:它是必須為 Moment 對象設置的時間單位。
- Int: 這是必須設置的時間值。
- Object: 時間還可以指定為包含所有時間單位及其值的 JSON 對象。
返回值:此方法從 Moment 對象返回給定時間單位的字符串。
注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。
Moment.js 可以使用以下命令安裝:
moment模塊的安裝:
npm install moment
以下示例將演示 Moment.js moment().set() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
momentOne.set('year', 2010);
momentOne.set('month', 6);
momentOne.set('date', 10);
console.log("MomentOne is:", momentOne.toString());
console.log("MomentOne year:", momentOne.year());
console.log("MomentOne month:", momentOne.month());
console.log("MomentOne date:", momentOne.date());
let momentTwo = moment();
momentTwo.set('y', 2022);
momentTwo.set('m', 8);
momentTwo.set('d', 19);
console.log("MomentTwo is:", momentTwo.toString());
console.log("MomentTwo year:", momentTwo.year());
console.log("MomentTwo month:", momentTwo.month());
console.log("MomentTwo date:", momentTwo.date());
輸出:
MomentOne is: Sat Jul 10 2010 00:28:08 GMT+0530 MomentOne year: 2010 MomentOne month: 6 MomentOne date: 10 MomentTwo is: Fri Aug 12 2022 00:08:08 GMT+0530 MomentTwo year: 2022 MomentTwo month: 7 MomentTwo date: 12
示例 2:
Javascript
const moment = require('moment');
let moment1 = moment();
moment1.set('hour', 10);
moment1.set('minute', 18);
moment1.set('second', 30);
moment1.set('millisecond', 150);
console.log(
"moment1 is:",
moment1.toString()
);
console.log(
"moment1 hour:",
moment1.hour()
);
console.log(
"moment1 minute:",
moment1.minute()
);
console.log(
"moment1 second:",
moment1.second()
);
console.log(
"moment1 millisecond:",
moment1.millisecond()
);
let moment2 = moment();
moment2.set('hour', 6);
moment2.set('minute', 30);
moment2.set('second', 10);
moment2.set('millisecond', 3500);
console.log(
"moment2 is:",
moment2.toString()
);
console.log(
"moment2 hour:",
moment2.hour()
);
console.log(
"moment2 minute:",
moment2.minute()
);
console.log(
"moment2 second:",
moment2.second()
);
console.log(
"moment2 millisecond:",
moment2.millisecond()
);
輸出:
moment1 is: Sun Jul 24 2022 10:18:30 GMT+0530 moment1 hour: 10 moment1 minute: 18 moment1 second: 30 moment1 millisecond: 150 moment2 is: Sun Jul 24 2022 06:30:13 GMT+0530 moment2 hour: 6 moment2 minute: 30 moment2 second: 13 moment2 millisecond: 500
參考:https://momentjs.com/docs/#/get-set/set/
相關用法
- Moment.js moment().startOf()用法及代碼示例
- Moment.js moment().subtract()用法及代碼示例
- 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().toString()用法及代碼示例
- Moment.js moment().local()用法及代碼示例
- Moment.js moment().min()用法及代碼示例
- Moment.js moment().get()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().set() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。