Estoy usando JSON.parse
una respuesta que a veces contiene una respuesta 404. En los casos en que devuelve 404, ¿hay alguna forma de detectar una excepción y luego ejecutar algún otro código?
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
, no aJSON.parse
sí misma. Si me muestra el código sippet, podría ayudarlo.