Sto usando JSON.parse
una risposta che a volte contiene una risposta 404. Nei casi in cui restituisce 404, c'è un modo per catturare un'eccezione e quindi eseguire qualche altro codice?
data = JSON.parse(response, function (key, value) {
var type;
if (value && typeof value === 'object') {
type = value.type;
if (typeof type === 'string' && typeof window[type] === 'function') {
return new(window[type])(value);
}
}
return value;
});
XMLHttpRequest
, non aJSON.parse
se stessa. Se mi mostri il codice sippet, potrei essere in grado di aiutarti.