小编典典

从 JSON.parse 捕获异常的正确方法

all

JSON.parse在有时包含 404 响应的响应上使用。在它返回 404 的情况下,有没有办法捕获异常然后执行一些其他代码?

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;
});

阅读 89

收藏
2022-04-14

共1个答案

小编典典

我将某些内容发布到 iframe 中,然后使用 json 解析读回 iframe 的内容…所以有时它不是 json 字符串

试试这个:

if(response) {
    try {
        a = JSON.parse(response);
    } catch(e) {
        alert(e); // error in the above string (in this case, yes)!
    }
}
2022-04-14