无法在Firefox中使用Javascript输出xPath数据

时间:2011-10-05 06:08:30

标签: javascript html xml parsing firefox

我正遭受巨大的困境,不能为我的生活,解决我做错了什么:S 我已经为其他项目编写了几个完全相同的代码 - 输出一个显示XML文件数据的表,但对于这个项目它只是不起作用!

这是我的代码:

<html>

<body>
<script type="text/javascript">

function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}

xml=loadXMLDoc("AH_vic.xml");
var aname="/AirportHeliport/timeSlice/AirportHeliportTimeSlice/name";
var acoord="/AirportHeliport/timeSlice/AirportHeliportTimeSlice/ARP/ElevatedPoint/gml:coordinates";


if (typeof xml.evaluate !== 'undefined') 
{
  var result = xml.evaluate(
   aname, 
   xml,
   function (prefix) {
     if (prefix === 'gml') {
       return 'http://www.opengis.net/gml/3.2';
     }

     else {
       return null;
     }
   },
   XPathResult.ANY_TYPE,
   null
  );

  var result2 = xml.evaluate(
   acoord, 
   xml,
   function (prefix) {
    if (prefix === 'gml') {
       return 'http://www.opengis.net/gml/3.2';
     }

     else {
       return null;
     }
   },
   XPathResult.ANY_TYPE,
   null
  );

  // now use the code here you already have in your sample for evaluate
  var nodes=xml.evaluate(
   aname,
   xml,
   function (prefix) {
 if (prefix === 'gml') {
       return 'http://www.opengis.net/gml/3.2';
     }

     else {
       return null;
     }


   },
   XPathResult.ANY_TYPE,
   null);

  var nodes2=xml.evaluate(
   acoord,
   xml,
   function (prefix) {
     if (prefix === 'gml') {
       return 'http://www.opengis.net/gml/3.2';
     }

     else {
       return null;
     }

   },
   XPathResult.ANY_TYPE,
   null);





var aname2=nodes.iterateNext();
var acoord2=nodes2.iterateNext();


//document.write(aname2.childNodes[0].nodeValue());




document.write("<table border=2><tr><td><b>Name</b></td><td><b>Coordinates</b></td></tr>");
while (aname2)
  {

  document.write("<tr><td>");
  document.write(aname2.childNodes[0].nodeValue);

  document.write("<br /><td>");

  document.write(acoord2.childNodes[0].nodeValue);
  document.write("<br /><td>");



  aname2=nodes.iterateNext();
  acoord2=nodes2.iterateNext();

  }
  document.write("</td></tr></table>");

}


else if (typeof xml.selectNodes !== 'undefined' && typeof xml.setProperty != 'undefined') 
{
  //xml.setProperty('SelectionLanguage', 'XPath');
  //xml.setProperty('SelectionNamespaces', 'xmlns:gml="http://www.opengis.net/gml/3.2"');
  var nodes = xml.selectNodes(aname);
  var nodes2 = xml.selectNodes(acoord);
  // now use the code you already have for selectNodes



document.write("<table border=2><tr><td><b>Name</b></td><td><b>Coordinates</b></td></tr>");

for (i=0;i<nodes.length;i++)
  {
  document.write("<tr><td>");
  document.write(nodes[i].childNodes[0].nodeValue);
  document.write("</td><td>");
  document.write(nodes2[i].childNodes[0].nodeValue);
  document.write("</td></tr>");
  }
  document.write("</table>");



}

</script>
</body>
</html>

Internet Explorer部分(循环结束)完美无瑕。我知道IE代码不依赖于命名空间(URL),但是命名空间和命名空间URL在我从中提取它们的XML文件中是完美的。 路径是完美的,因为它在IE中工作。 在Firefox中运行它并观察开发者控制台,如果我们尝试打印出aname2,那么document.write(aname2.childNodes [0] .nodeValue);它报告aname2 = null ...

任何帮助将不胜感激!我来自澳大利亚,很乐意大喊你喝酒或者ps3或其他东西=)

1 个答案:

答案 0 :(得分:0)

很有趣,我找到了你的问题,因为我在Internet Explorer上遇到了麻烦=)

我一直在其他浏览器中这样做:

namespace.prototype.xpath = function(xml, path) {
    var array = [];

    var appendFromNodes = function(object, nodes) {
        for (var index in nodes) {
            var childNode = nodes[index];

            if (childNode.nodeName) {
                object[childNode.nodeName] = childNode.textContent;
            }
        }
    };

    if (xml.evaluate) { // checks if browser supports the W3C way of doing it (no IE)
        var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
        var result = nodes.iterateNext();

        while (result) {
            var tmp = {};
            appendFromNodes(tmp, result.childNodes);

            for (var index in result.attributes) {
                var attribute = result.attributes[index];

                if (attribute.nodeName) {
                    tmp[attribute.nodeName] = attribute.nodeValue;
                }
            }

            array.push(tmp);
            result = nodes.iterateNext();
        }
    }

    return array;
};

在这种情况下,我正在用节点填充一个数组,但你可以做任何你想做的事。