MomentJS - Thời lượng

MomentJS cung cấp một tính năng quan trọng được gọi là thời lượng xử lý độ dài thời gian cho các đơn vị nhất định. Trong chương này, bạn sẽ tìm hiểu điều này một cách chi tiết.

Các phương pháp có sẵn với thời lượng

Bảng sau đây cho thấy các phương pháp có sẵn với thời lượng cho các đơn vị khác nhau được sử dụng với thời lượng khoảnh khắc -

phương pháp Cú pháp
Đang tạo

moment.duration (Số, Chuỗi);

moment.duration (Số);

moment.duration (Đối tượng);

moment.duration (Chuỗi);

Nhân bản

moment.duration (). clone ();

Nhân hóa

moment.duration (). humanze ();

Mili giây

moment.duration (). mili giây ();

moment.duration (). asMilliseconds ();

Giây

moment.duration (). seconds ();

moment.duration (). asSeconds ();

Phút

moment.duration (). phút ();

moment.duration (). asMinutes ();

Giờ

moment.duration (). hours ();

moment.duration (). asHours ();

Ngày

moment.duration (). days ();

moment.duration (). asDays ();

Tuần

moment.duration (). tuần ();

moment.duration (). asWeeks ();

Tháng

moment.duration (). months ();

moment.duration (). asMonths ();

Years

moment.duration (). năm ();

moment.duration (). asYears ();

Thêm thời gian

moment.duration (). add (Số, Chuỗi);

moment.duration (). add (Số);

moment.duration (). add (Thời lượng);

moment.duration (). add (Đối tượng);

Trừ thời gian

moment.duration (). subtract (Số, Chuỗi);

moment.duration (). subtract (Số);

moment.duration (). subtract (Thời lượng);

moment.duration (). subtract (Đối tượng);

Sử dụng Thời lượng với Chênh lệch

var thời lượng = moment.duration (x.diff (y))

Theo đơn vị thời gian

moment.duration (). as (Chuỗi);

Nhận đơn vị thời gian

thời lượng.get ('giờ');

thời lượng.get ('phút');

thời lượng.get ('giây');

thời lượng.get ('mili giây');

Như JSON

moment.duration (). toJSON ();

Là một khoảng thời gian

moment.isDuration (obj);

Theo chuỗi ISO 8601

moment.duration (). toISOString ();

Ngôn ngữ

moment.duration (). locale ();

moment.duration (). locale (Chuỗi);