Qualcuno sa di un modo semplice per prendere una data (ad esempio oggi) e tornare indietro di X giorni?
Quindi, per esempio, se voglio calcolare la data 5 giorni prima di oggi.
Qualcuno sa di un modo semplice per prendere una data (ad esempio oggi) e tornare indietro di X giorni?
Quindi, per esempio, se voglio calcolare la data 5 giorni prima di oggi.
Risposte:
Prova qualcosa del genere:
var d = new Date();
d.setDate(d.getDate()-5);
Si noti che ciò modifica l'oggetto data e restituisce il valore dell'ora della data aggiornata.
var d = new Date();
document.write('Today is: ' + d.toLocaleString());
d.setDate(d.getDate() - 5);
document.write('<br>5 days ago was: ' + d.toLocaleString());
new Date(new Date().setDate(new Date().getDate()-5))
- che sarà di 5 giorni fa. Nell'esempio della risposta, passalo a una nuova data per ottenere un oggetto data. Quindi new Date(d)
è quello che vuoi.
setDate(-1)
imposterà la data all'ultimo giorno del mese
toString
metodi come toISOString
, toDateString
e così via
var dateOffset = (24*60*60*1000) * 5; //5 days
var myDate = new Date();
myDate.setTime(myDate.getTime() - dateOffset);
Se stai eseguendo molte manipolazioni della data mal di testa in tutta la tua applicazione web, DateJS renderà la tua vita molto più semplice:
getTime()
e setTime()
sono millisecondi dall'epoca. Non dovrebbe importare se il tempo attraversa il confine di un anno.
Va qualcosa del genere:
var d = new Date(); // today!
var x = 5; // go back 5 days!
d.setDate(d.getDate() - x);
function getDaysAgo(b){var a=new Date;a.setDate(a.getDate()-b);return a};
quindi solovar daysAgo45 = getDaysAgo(45);
Ho notato che getDays + X non funziona oltre i limiti di giorno / mese. L'uso di getTime funziona fino a quando la data non è precedente al 1970.
var todayDate = new Date(), weekDate = new Date();
weekDate.setTime(todayDate.getTime()-(7*24*3600000));
get moment.js. Tutti i ragazzi carini lo usano. Ha più opzioni di formattazione, ecc. Dove
var n = 5;
var dateMnsFive = moment(<your date>).subtract(n , 'day');
Opzionale! Converti in JS Date obj per rilegatura angolare.
var date = new Date(dateMnsFive.toISOString());
Opzionale! Formato
var date = dateMnsFive.format("YYYY-MM-DD");
Ho realizzato questo prototipo per Date in modo da poter passare valori negativi per sottrarre giorni e valori positivi per aggiungere giorni.
if(!Date.prototype.adjustDate){
Date.prototype.adjustDate = function(days){
var date;
days = days || 0;
if(days === 0){
date = new Date( this.getTime() );
} else if(days > 0) {
date = new Date( this.getTime() );
date.setDate(date.getDate() + days);
} else {
date = new Date(
this.getFullYear(),
this.getMonth(),
this.getDate() - Math.abs(days),
this.getHours(),
this.getMinutes(),
this.getSeconds(),
this.getMilliseconds()
);
}
this.setTime(date.getTime());
return this;
};
}
Quindi, per usarlo posso semplicemente scrivere:
var date_subtract = new Date().adjustDate(-4),
date_add = new Date().adjustDate(4);
d.setDate(d.getDate() + days)
con valori positivi e negativi per giorni rispettivamente per aggiungere e sottrarre giorni. E dovrebbe funzionare sull'istanza (come fanno altri metodi Date), non creare e restituire una copia.
Alcune delle soluzioni esistenti erano vicine, ma non esattamente quello che volevo. Questa funzione funziona con valori positivi o negativi e gestisce i casi limite.
function addDays(date, days) {
return new Date(
date.getFullYear(),
date.getMonth(),
date.getDate() + days,
date.getHours(),
date.getMinutes(),
date.getSeconds(),
date.getMilliseconds()
);
}
Mi piace fare la matematica in millisecondi. Quindi usaDate.now()
var newDate = Date.now() + -5*24*3600*1000; // date 5 days ago in milliseconds
e se ti piace formattato
new Date(newDate).toString(); // or .toUTCString or .toISOString ...
NOTA: Date.now()
non funziona nei browser più vecchi (es. IE8 credo). Polyfill qui .
@socketpair ha sottolineato la mia sciattezza. Come dice "Un giorno all'anno hanno 23 ore e circa 25 a causa delle regole del fuso orario".
Per estenderlo, la risposta sopra avrà imprecisioni di risparmio di luce nel caso in cui si desidera calcolare il giorno LOCALE 5 giorni fa in un fuso orario con le modifiche di luce diurna e tu
Date.now()
ti dia il LOCAL attuale ora o, o.toString()
che restituisce la data locale e pertanto non è compatibile con la Date.now()
data di base in UTC. Tuttavia, funziona se stai facendo i tuoi calcoli tutti in UTC, ad es
A. Desideri la data UTC 5 giorni fa da NOW (UTC)
var newDate = Date.now() + -5*24*3600*1000; // date 5 days ago in milliseconds UTC
new Date(newDate).toUTCString(); // or .toISOString(), BUT NOT toString
B. Si inizia con una data di base UTC diversa da "now", utilizzando Date.UTC()
newDate = new Date(Date.UTC(2015, 3, 1)).getTime() + -5*24*3600000;
new Date(newDate).toUTCString(); // or .toISOString BUT NOT toString
Trovo un problema con il metodo getDate () / setDate () è che trasforma troppo facilmente tutto in millisecondi e la sintassi a volte è difficile da seguire per me.
Invece mi piace lavorare sul fatto che 1 giorno = 86.400.000 millisecondi.
Quindi, per la tua domanda particolare:
today = new Date()
days = 86400000 //number of milliseconds in a day
fiveDaysAgo = new Date(today - (5*days))
Funziona come un fascino.
Uso sempre questo metodo per fare calcoli a rotazione di 30/60/365 giorni.
Puoi facilmente estrapolarlo per creare unità di tempo per mesi, anni, ecc.
dividere la data in parti, quindi restituire una nuova data con i valori modificati
function DateAdd(date, type, amount){
var y = date.getFullYear(),
m = date.getMonth(),
d = date.getDate();
if(type === 'y'){
y += amount;
};
if(type === 'm'){
m += amount;
};
if(type === 'd'){
d += amount;
};
return new Date(y, m, d);
}
Ricorda che i mesi sono a base zero, ma i giorni no. ovvero nuova data (2009, 1, 1) == 01 febbraio 2009, nuova data (2009, 1, 0) == 31 gennaio 2009;
Senza usare la seconda variabile, puoi sostituire 7 per con i tuoi back x giorni:
let d=new Date(new Date().getTime() - (7 * 24 * 60 * 60 * 1000))
function addDays (date, daysToAdd) {
var _24HoursInMilliseconds = 86400000;
return new Date(date.getTime() + daysToAdd * _24HoursInMilliseconds);
};
var now = new Date();
var yesterday = addDays(now, - 1);
var tomorrow = addDays(now, 1);
Ho creato una funzione per la manipolazione della data. puoi aggiungere o sottrarre qualsiasi numero di giorni, ore, minuti.
function dateManipulation(date, days, hrs, mins, operator) {
date = new Date(date);
if (operator == "-") {
var durationInMs = (((24 * days) * 60) + (hrs * 60) + mins) * 60000;
var newDate = new Date(date.getTime() - durationInMs);
} else {
var durationInMs = (((24 * days) * 60) + (hrs * 60) + mins) * 60000;
var newDate = new Date(date.getTime() + durationInMs);
}
return newDate;
}
Ora chiama questa funzione passando i parametri. Ad esempio, ecco una chiamata di funzione per ottenere la data prima di 3 giorni da oggi.
var today = new Date();
var newDate = dateManipulation(today, 3, 0, 0, "-");
Usa MomentJS .
function getXDaysBeforeDate(referenceDate, x) {
return moment(referenceDate).subtract(x , 'day').format('MMMM Do YYYY, h:mm:ss a');
}
var yourDate = new Date(); // let's say today
var valueOfX = 7; // let's say 7 days before
console.log(getXDaysBeforeDate(yourDate, valueOfX));
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
Le risposte migliori hanno portato a un bug nel mio codice in cui il primo del mese avrebbe fissato una data futura nel mese corrente. Ecco cosa ho fatto
curDate = new Date(); // Took current date as an example
prvDate = new Date(0); // Date set to epoch 0
prvDate.setUTCMilliseconds((curDate - (5 * 24 * 60 * 60 * 1000))); //Set epoch time
Un modo semplice per gestire le date è usare Moment.js
È possibile utilizzare add
. Esempio
var startdate = "20.03.2014";
var new_date = moment(startdate, "DD.MM.YYYY");
new_date.add(5, 'days'); //Add 5 days to start date
alert(new_date);
per me tutte le combinazioni hanno funzionato bene con lo snipplet di codice sottostante, lo snippet è per l'implementazione di Angular-2, se è necessario aggiungere giorni, passare un numero positivo di giorni, se è necessario sottrarre passare un numero negativo di giorni
function addSubstractDays(date: Date, numberofDays: number): Date {
let d = new Date(date);
return new Date(
d.getFullYear(),
d.getMonth(),
(d.getDate() + numberofDays)
);
}
Ottengo un buon chilometraggio con date.js:
d = new Date();
d.add(-10).days(); // subtract 10 days
Bello!
Il sito Web include questa bellezza:
Datejs non solo analizza le stringhe, le divide in due in modo pulito
Se vuoi sottrarre un numero di giorni e formattare la data in un formato leggibile, dovresti prendere in considerazione la creazione di 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 5 days
// 3. Format it
// 4. Output it
// ---------------------------------------------------------------------
document.body.innerHTML = DateHelper.format(DateHelper.addDays(new Date(), -5));
(vedi anche questo violino )
Vedere il codice seguente, sottrarre i giorni dalla data corrente. Inoltre, impostare il mese in base alla data sottratta.
var today = new Date();
var substract_no_of_days = 25;
today.setTime(today.getTime() - substract_no_of_days* 24 * 60 * 60 * 1000);
var substracted_date = (today.getMonth()+1) + "/" +today.getDate() + "/" + today.getFullYear();
alert(substracted_date);
Quando si imposta la data, la data viene convertita in millisecondi, quindi è necessario riconvertirla in una data:
Questo metodo prende in considerazione anche il cambio di Capodanno ecc.
function addDays( date, days ) {
var dateInMs = date.setDate(date.getDate() - days);
return new Date(dateInMs);
}
var date_from = new Date();
var date_to = addDays( new Date(), parseInt(days) );
Puoi usare Javascript.
var CurrDate = new Date(); // Current Date
var numberOfDays = 5;
var days = CurrDate.setDate(CurrDate.getDate() + numberOfDays);
alert(days); // It will print 5 days before today
Per PHP,
$date = date('Y-m-d', strtotime("-5 days")); // it shows 5 days before today.
echo $date;
Spero che ti possa aiutare.
Mi sono convertito in millisecondi e ho dedotto giorni in cui mese e anno non cambieranno e logicamente
var numberOfDays = 10;//number of days need to deducted or added
var date = "01-01-2018"// date need to change
var dt = new Date(parseInt(date.substring(6), 10), // Year
parseInt(date.substring(3,5), 10) - 1, // Month (0-11)
parseInt(date.substring(0,2), 10));
var new_dt = dt.setMilliseconds(dt.getMilliseconds() - numberOfDays*24*60*60*1000);
new_dt = new Date(new_dt);
var changed_date = new_dt.getDate()+"-"+(new_dt.getMonth()+1)+"-"+new_dt.getFullYear();
La speranza aiuta
var date = new Date();
var day = date.getDate();
var mnth = date.getMonth() + 1;
var fDate = day + '/' + mnth + '/' + date.getFullYear();
document.write('Today is: ' + fDate);
var subDate = date.setDate(date.getDate() - 1);
var todate = new Date(subDate);
var today = todate.getDate();
var tomnth = todate.getMonth() + 1;
var endDate = today + '/' + tomnth + '/' + todate.getFullYear();
document.write('<br>1 days ago was: ' + endDate );
Utilizzo della sintassi della funzione JavaScript moderna
const getDaysPastDate = (daysBefore, date = new Date) => new Date(date - (1000 * 60 * 60 * 24 * daysBefore));
console.log(getDaysPastDate(1)); // yesterday
Prova qualcosa del genere
dateLimit = (curDate, limit) => {
offset = curDate.getDate() + limit
return new Date( curDate.setDate( offset) )
}
currDate potrebbe essere qualsiasi data
limite potrebbe essere la differenza nel numero di giorni (positivo per il futuro e negativo per il passato)
Questo ti darà un risultato del 10% funzionante negli ultimi 10 giorni e non otterrai alcun tipo di problema
var date = new Date();
var day=date.getDate();
var month=date.getMonth() + 1;
var year=date.getFullYear();
var startDate=day+"/"+month+"/"+year;
var dayBeforeNineDays=moment().subtract(10, 'days').format('DD/MM/YYYY');
startDate=dayBeforeNineDays;
var endDate=day+"/"+month+"/"+year;
è possibile modificare i giorni di sottrazione in base alle proprie esigenze
var daysToSubtract = 3;
$.datepicker.formatDate('yy/mm/dd', new Date() - daysToSubtract) ;
var d = new Date();
document.write('Today is: ' + d.toLocaleString());
d.setDate(d.getDate() - 31);
document.write('<br>5 days ago was: ' + d.toLocaleString());