从http处理程序返回的JSON在IE8中为null,但不是IE10或Chrome

时间:2015-01-12 15:48:33

标签: javascript json internet-explorer internet-explorer-8

我有以下JavaScript

patients.prototype.GetPatient = function(patient_id,callback)
{
    var xmlhttp;
    var fullpath;

    try {

        if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        }
        else {
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }

        xmlhttp.onreadystatechange = function () {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {

                var pat = parseJson(xmlhttp.response);

                if (pat) {
                    callback(parseJson(xmlhttp.response));
                }
                else {
                    alert('Null object returned?');
                }
            }
            else if (xmlhttp.status == 404) {
                alert('Unable to find Retrieve Patient Service');
            }
        }

        xmlhttp.open("GET", "RetrievePatient.ashx?PatientId=" + patient_id, true);
        xmlhttp.send();

    }
    catch (e) {
        alert('Unable to retrieve requested patient details');
    }
}

function parseJson(jsonString) {
    var res;

    try {

        alert('Parsing JSON');

        res = JSON.parse(jsonString);

    }
    catch (e) {
        alert('Call to evaluate result failed with error ' + e.message + ' Evaluating Json ' + jsonString );
    };


    return res;
}

如果从IE10上运行的页面运行,我会正确地获取患者详细信息。如果我在Chrome上运行它同样会返回患者的详细信息,但是如果我在IE8的页面上运行它,则JSON为空并且整个过程都会崩溃。

任何人都知道我可以做些什么才能在IE8中完成这项工作?

1 个答案:

答案 0 :(得分:1)

在尝试解析之前尝试检查null。另外,添加一个未定义的检查

function parseJson(jsonString) {
   var res;

   if (jsonString == undefined) {
       return jsonString;
   }

   if (jsonString == null) {
       return jsonString;
   }

   if (window.JSON && window.JSON.parse ) {
       res = JSON.parse(jsonString);
       return res;
   }

}