MomentJS - Durate
MomentJS fornisce un'importante funzionalità chiamata durate che gestisce il periodo di tempo per determinate unità. In questo capitolo lo imparerai in dettaglio.
Metodi disponibili con durate
La tabella seguente mostra i metodi disponibili con durata per diverse unità da utilizzare con durata momento -
Metodo | Sintassi |
---|---|
Creazione | moment.duration (numero, stringa); moment.duration (Numero); moment.duration (Oggetto); moment.duration (String); |
Clone | moment.duration (). clone (); |
Umanizzare | moment.duration (). humanize (); |
Millisecondi | moment.duration (). millisecondi (); moment.duration (). asMilliseconds (); |
Secondi | moment.duration (). seconds (); moment.duration (). asSeconds (); |
Minuti | moment.duration (). minutes (); moment.duration (). asMinutes (); |
Ore | moment.duration (). ore (); moment.duration (). asHours (); |
Giorni | moment.duration (). giorni (); moment.duration (). asDays (); |
Settimane | moment.duration (). settimane (); moment.duration (). asWeeks (); |
Mesi | moment.duration (). months (); moment.duration (). asMonths (); |
Years | moment.duration (). years (); moment.duration (). asYears (); |
Aggiungi tempo | moment.duration (). add (Number, String); moment.duration (). add (Numero); moment.duration (). add (Durata); moment.duration (). add (Object); |
Sottrai tempo | moment.duration (). subtract (Number, String); moment.duration (). subtract (Number); moment.duration (). subtract (durata); moment.duration (). subtract (Object); |
Utilizzo della durata con diff | var duration = moment.duration (x.diff (y)) |
Come unità di tempo | moment.duration (). as (String); |
Ottieni unità di tempo | duration.get ('ore'); duration.get ('minutes'); duration.get ('secondi'); duration.get ('millisecondi'); |
Come JSON | moment.duration (). toJSON (); |
È una durata | moment.isDuration (obj); |
Come stringa ISO 8601 | moment.duration (). toISOString (); |
Locale | moment.duration (). locale (); moment.duration (). locale (String); |