aggiornato
Abbiamo una libreria UI interna che deve far fronte sia al formato JSON incorporato ASP.NET di Microsoft, come /Date(msecs)/
, chiesto qui in origine, sia alla maggior parte del formato data di JSON incluso JSON.NET, come 2014-06-22T00:00:00.0
. Inoltre, dobbiamo far fronte all'incapacità di oldIE di far fronte a qualsiasi cifra tranne 3 decimali .
Per prima cosa rileviamo quale tipo di data stiamo consumando, analizziamo in un normale Date
oggetto JavaScript , quindi formattiamo.
1) Rileva il formato Microsoft Date
// Handling of Microsoft AJAX Dates, formatted like '/Date(01238329348239)/'
function looksLikeMSDate(s) {
return /^\/Date\(/.test(s);
}
2) Rileva il formato data ISO
var isoDateRegex = /^(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)(\.\d\d?\d?)?([\+-]\d\d:\d\d|Z)?$/;
function looksLikeIsoDate(s) {
return isoDateRegex.test(s);
}
3) Formato data MS MS:
function parseMSDate(s) {
// Jump forward past the /Date(, parseInt handles the rest
return new Date(parseInt(s.substr(6)));
}
4) Formato data ISO analizzato.
Abbiamo almeno un modo per essere sicuri di avere a che fare con date ISO standard o date ISO modificate per avere sempre tre millisecondi ( vedi sopra ), quindi il codice è diverso a seconda dell'ambiente.
4a) Analizzare il formato della data ISO standard, far fronte ai problemi di oldIE:
function parseIsoDate(s) {
var m = isoDateRegex.exec(s);
// Is this UTC, offset, or undefined? Treat undefined as UTC.
if (m.length == 7 || // Just the y-m-dTh:m:s, no ms, no tz offset - assume UTC
(m.length > 7 && (
!m[7] || // Array came back length 9 with undefined for 7 and 8
m[7].charAt(0) != '.' || // ms portion, no tz offset, or no ms portion, Z
!m[8] || // ms portion, no tz offset
m[8] == 'Z'))) { // ms portion and Z
// JavaScript's weirdo date handling expects just the months to be 0-based, as in 0-11, not 1-12 - the rest are as you expect in dates.
var d = new Date(Date.UTC(m[1], m[2]-1, m[3], m[4], m[5], m[6]));
} else {
// local
var d = new Date(m[1], m[2]-1, m[3], m[4], m[5], m[6]);
}
return d;
}
4b) Formato ISO di analisi con decimali fissi di tre millisecondi - molto più semplice:
function parseIsoDate(s) {
return new Date(s);
}
5) Formattalo:
function hasTime(d) {
return !!(d.getUTCHours() || d.getUTCMinutes() || d.getUTCSeconds());
}
function zeroFill(n) {
if ((n + '').length == 1)
return '0' + n;
return n;
}
function formatDate(d) {
if (hasTime(d)) {
var s = (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
s += ' ' + d.getHours() + ':' + zeroFill(d.getMinutes()) + ':' + zeroFill(d.getSeconds());
} else {
var s = (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
}
return s;
}
6) Legalo tutto insieme:
function parseDate(s) {
var d;
if (looksLikeMSDate(s))
d = parseMSDate(s);
else if (looksLikeIsoDate(s))
d = parseIsoDate(s);
else
return null;
return formatDate(d);
}
La vecchia risposta di seguito è utile per associare questa formattazione della data all'analisi JSON di jQuery in modo da ottenere oggetti Date anziché stringhe o se in qualche modo sei ancora bloccato in jQuery <1.5.
Vecchia risposta
Se si utilizza la funzione Ajax di jQuery 1.4 con ASP.NET MVC, è possibile trasformare tutte le proprietà DateTime in oggetti Date con:
// Once
jQuery.parseJSON = function(d) {return eval('(' + d + ')');};
$.ajax({
...
dataFilter: function(d) {
return d.replace(/"\\\/(Date\(-?\d+\))\\\/"/g, 'new $1');
},
...
});
In jQuery 1.5 puoi evitare di ignorare il parseJSON
metodo a livello globale usando l'opzione convertitori nella chiamata Ajax.
http://api.jquery.com/jQuery.ajax/
Sfortunatamente devi passare al vecchio percorso di valutazione per far sì che le Date analizzino globalmente sul posto, altrimenti dovrai convertirle caso per caso più post-analisi.