J'utilise JSON.parse
sur une réponse qui contient parfois une réponse 404. Dans les cas où il retourne 404, existe-t-il un moyen d'attraper une exception puis d'exécuter un autre code?
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;
});