Risposte:
var date = new Date();
date ; //# => Fri Apr 01 2011 11:14:50 GMT+0200 (CEST)
date.setDate(date.getDate() - 1);
date ; //# => Thu Mar 31 2011 11:14:50 GMT+0200 (CEST)
Non molto efficiente, ma come oneliner:
var yesterday = new Date(new Date().setDate(new Date().getDate()-1));
Quanto sopra crea tre Date
oggetti inutilmente inutili. Questo può essere ridotto a una singola istanza con:
var yesterday = (function(){this.setDate(this.getDate()-1); return this})
.call(new Date)
Oppure, se preferisci:
var yesterday = (function(d){ d.setDate(d.getDate()-1); return d})(new Date)
Oppure, se si preferisce ES6 con la funzione freccia:
let yesterday = ( d => new Date(d.setDate(d.getDate()-1)) )(new Date);
var yesterday = (function(d){ d.setDate(d.getDate()-1); return d})(new Date)
Prova questo
var d = new Date();
d.setDate(d.getDate() - 1);
Sorprendentemente nessuna risposta punta alla soluzione cross browser più semplice
Per trovare esattamente la stessa ora ieri:
var yesterday = new Date(Date.now() - 86400000); // that is: 24 * 60 * 60 * 1000
Cioè se vuoi liberarti dalla dipendenza, altrimenti ti consiglio di usare http://momentjs.com
Per generalizzare la domanda e fare altri calcoli diff utilizzare:
var yesterday = new Date((new Date()).valueOf() - 1000*60*60*24);
questo crea un nuovo oggetto data basato sul valore di "now" come numero intero che rappresenta l'epoca unix in millisecondi sottraendo un giorno.
Due giorni fa:
var twoDaysAgo = new Date((new Date()).valueOf() - 1000*60*60*24*2);
Un'ora fa:
var oneHourAgo = new Date((new Date()).valueOf() - 1000*60*60);
new Date(Date.parse(new Date()) - 86400000)
. Anche se mi piace Date.now () quindi forse ci proverò invece. Ti farà risparmiare una data in più.
Uso la libreria moment , è molto flessibile e facile da usare.
Nel tuo caso:
let yesterday = moment().subtract(1, 'day').toDate();
subtract
invece diadd
new Date(new Date().setDate(new Date().getDate()-1))
//Create a date object using the current time
var now = new Date();
//Subtract one day from it
now.setDate(now.getDate()-1);
var today = new Date();
var yesterday1 = new Date(new Date().setDate(new Date().getDate() - 1));
var yesterday2 = new Date(Date.now() - 86400000);
var yesterday3 = new Date(Date.now() - 1000*60*60*24);
var yesterday4 = new Date((new Date()).valueOf() - 1000*60*60*24);
console.log("Today: "+today);
console.log("Yesterday: "+yesterday1);
console.log("Yesterday: "+yesterday2);
console.log("Yesterday: "+yesterday3);
console.log("Yesterday: "+yesterday4);
Questo produrrà ieri alle 00:00 con precisione dei minuti
var d = new Date();
d.setDate(d.getDate() - 1);
d.setTime(d.getTime()-d.getHours()*3600*1000-d.getMinutes()*60*1000);
d.setHours(0,0,0,0);
farà il trucco
d.setHours(-1,0,0,0)
. Questo restituirà la data di ieri, ma potrebbe non essere l'orario desiderato (23:00:00)
Prova questo, funziona per me:
var today = new Date();
var yesterday = new Date(today.setDate(today.getDate() - 1)); `
Mi ha restituito un oggetto datato per ieri
var yesterday = new Date(); yesterday.setDate(today.GetDate() - 1)
così puoi usare sia oggi che ieri
Ecco una riga che viene utilizzata per ottenere la data di ieri in formato AAAA-MM-GG nel testo e gestire l'offset del fuso orario.
new Date(Date.now() - 1 * 86400000 - new Date().getTimezoneOffset() * 60000).toISOString().split('T')[0]
Può essere ovviamente modificato alla data di ritorno, x giorni indietro nel tempo. Per includere tempo ecc.
console.log(Date())
console.log(new Date(Date.now() - 1 * 86400000 - new Date().getTimezoneOffset() * 60000).toISOString().split('T')[0]); // "2019-11-11"
console.log(new Date(Date.now() - 1 * 86400000 - new Date().getTimezoneOffset() * 60000).toISOString().split('.')[0].replace('T',' ')); // "2019-11-11 11:11:11"
// that is: [dates] * 24 * 60 * 60 * 1000 - offsetinmin * 60 * 1000 // this is: [dates] * 24 * 60 * 60 * 1000 - offsetinmin * 60 * 1000
Se vuoi sia ottenere la data di ieri sia formattarla in un formato leggibile, considera la possibilità di creare un DateHelper
oggetto personalizzato che assomigli a questo:
var DateHelper = {
addDays : function(aDate, numberOfDays) {
aDate.setDate(aDate.getDate() + numberOfDays); // Add numberOfDays
return aDate; // Return the date
},
format : function format(date) {
return [
("0" + date.getDate()).slice(-2), // Get day and pad it with zeroes
("0" + (date.getMonth()+1)).slice(-2), // Get month and pad it with zeroes
date.getFullYear() // Get full year
].join('/'); // Glue the pieces together
}
}
// With this helper, you can now just use one line of readable code to :
// ---------------------------------------------------------------------
// 1. Get the current date
// 2. Subtract 1 day
// 3. Format it
// 4. Output it
// ---------------------------------------------------------------------
document.body.innerHTML = DateHelper.format(DateHelper.addDays(new Date(), -1));
(vedi anche questo violino )
Puoi usare momentjs, è molto utile poter ottenere molte cose con questa libreria.
Ottieni la data di ieri con i tempi attuali
moment().subtract(1, 'days').toString()
Ottieni la data di ieri con l'inizio della data
moment().subtract(1, 'days').startOf('day').toString()
"Date.now () - 86400000" non funzionerà il giorno di fine dell'ora legale (che ha 25 ore quel giorno)
Un'altra opzione è utilizzare la chiusura:
var d = new goog.date.Date();
d.add(new goog.date.Interval(0, 0, -1));
getDate
restituisce il giorno del mese (ad es. 1 - 31), masetDate(0)
imposta effettivamente la data sull'ultimo giorno del mese precedente. Funziona su tutti i browser però?