1

我有一个 xml 文件:

<?xml version="1.0" encoding="ISO-8859-1"?>
<food>
    <cuisine type="Chinese">
        <restaurant name = "Panda Express">
            <location id= "0"></location>
            <phone id = "1"></phone>
            <city id="2"></phone>
        </restaurant>
        <restaurant name = "Mr. Chau's">

        </restaurant>
    </cuisine>
    <cuisine type="Indian">
        <restaurant name = "Shan">

        </restaurant>
    </cuisine>
</food>

我正在尝试计算美食节点的数量,这是我拥有的代码,我知道它大部分是正确的,但是当我尝试打印节点列表的长度时,它说它是 0

//starts talking to the xml document
        if(window.XMLHttpRequest){
            xmlhttp = new XMLHttpRequest();
        }else{
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }

        xmlhttp.open("GET","data.xml", false);
        xmlhttp.send();
        xmlData = xmlhttp.responseXML;


        //fills the first comboBox
        var sel = document.getElementById('CuisineList');
        cuisineList = xmlData.getElementsByTagName('cuisine');
        document.getElementById("test").innerHTML = cuisineList.length;
4

1 回答 1

0

两个可能的答案:

A) XML 有错误,你有</phone>你需要的地方</city>。所以你需要解决这个问题。:-)(但我猜这只是问题,而不是你的真实数据,因为如果它在你的真实数据中,你不会得到0,我不会想;你会得到一个错误。 )

B) 检查您的响应标头,可能是您的服务器没有返回具有正确 MIME 类型的 XML。如果不:

  1. 最好的答案是更正服务器配置,以便正确地提供 XML 文件。

  2. 如果由于某种原因您不能这样做,您可以使用overrideMimeType强制XMLHttpRequest将响应视为 XML:

    xmlhttp.open("GET","data.xml", false);
    xmlhttp.overrideMimeType("text/xml"); // <=== The new bit
    xmlhttp.send();
    xmlData = xmlhttp.responseXML;
    

如果你解决了这些问题,它就可以工作:实时工作副本| 来源

于 2012-07-07T07:36:48.720 回答