无法使用xpath通过javascript从XML中获取内容

时间:2014-10-14 22:20:11

标签: javascript xml xpath

我认为我设置了名称空间解析器,

var nodes=xml.evaluate(path, //xpathExpression
                               xml,  //contextNode
                               NSResolver, //namespaceResolver
                               XPathResult.ANY_TYPE, //resultType
                               null //result
                              );

而且我认为我正确地设置路径,(我在这里尝试了很多变化,几乎任何可能有用的东西)

path="/";

但nodes.iterateNext()似乎在告诉我我做错了什么:

firebug output : nodes : [object XPathResult] length : undefined 

x和xml对象虽然很好,因为我可以在firebug中看到它们和xml。如果你使用我的代码,我只是在chrome中测试,所以如果你使用IE浏览器,你可能还有其他一些蠕虫病毒。 :)

继承人xml(已消毒的版本)

<dataset xmlns="http://stub.test.data1" xmlns:xs="http://another.stub.test.moredata">
<!--
<dataset
    xmlns="http://stub.test.data1"
    xmlns:xs="http://another.stub.test.moredata"
    xs:schemaLocation="http://yet.more.stub.test.data/xmldata.xsd"
>
-->
    <metadata>
        <item name="a" type="xs:string" length="92"/>
        <item name="b" type="xs:string" length="50"/>
        <item name="c" type="xs:short" precision="1"/>
        <item name="d" type="xs:string" length="66"/>
        <item name="e" type="xs:string" length="26"/>
        <item name="f" type="xs:string" length="6"/>
        <item name="g" type="xs:string" length="264"/>
        <item name="h" type="xs:double" precision="2"/>
        <item name="i" type="xs:string" length="22"/>
        <item name="j" type="xs:date"/>
        <item name="k" type="xs:date"/>
        <item name="l" type="xs:string" length="16"/>
        <item name="m" type="xs:short" precision="1"/>
        <item name="n" type="xs:short" precision="1"/>
        <item name="o" type="xs:string" length="50"/>
    </metadata>
    <data>
        <row>
            <value>someData1</value>
            <value>someData2</value>
            <value>someData3</value>
            <value>someData4</value>
            <value>someData5</value>
            <value>someData6</value>
            <value>someData7</value>
            <value>someData8</value>
            <value>someData9</value>
            <value>someData10</value>
            <value>someData11</value>
            <value>someData12</value>
            <value>someData13</value>
            <value>someData14</value>
            <value>someData15</value>
        </row>
    </data>
</dataset>

继续使用javascript:

function loadXMLDoc(dname)
{
    if (window.XMLHttpRequest)
      {
        xhttp=new XMLHttpRequest();
      }
    else
      {
        xhttp=new ActiveXObject("Microsoft.XMLHTTP");
      }

    //initializes the request
    xhttp.open("GET",dname,false);//method, url, optional async defaults to true

    try {xhttp.responseType="msxml-document"} catch(err) {
        console.log('hey, an error occured');
    } // Helping IE

    xhttp.send("");//send the request. Does not return till the response is returned (due to false above)

    return xhttp;
}

function NSResolver(nsPrefix) {
    console.log("nsPrefix : " + nsPrefix);
    if(nsPrefix == "xs") {
        return "http://www.w3.org/2001/XMLSchema-instance";
    }
}

function displayNodes() {

    // code for IE
    if (window.ActiveXObject || xhttp.responseType=="msxml-document")
    {
        console.log('code for IE');
        console.log('path=' + path);
        xml.setProperty("SelectionLanguage","XPath");
        nodes=xml.selectNodes(path);
        for (i=0;i<nodes.length;i++)
          {
          document.write(nodes[i].childNodes[0].nodeValue);
          document.write("<br>");
          }
    }

    // code for Chrome, Firefox, Opera, etc.
    else if (document.implementation && document.implementation.createDocument)
    {
        console.log('code for chr / ff / op');
        console.log('path=' + path);


        //docs : http://help.dottoro.com/ljruhkuj.php
        var nodes=xml.evaluate(path, //xpathExpression
                               xml,  //contextNode
                               NSResolver, //namespaceResolver
                               XPathResult.ANY_TYPE, //resultType
                               null //result
                              );

        console.log("nodes : " + nodes + " length : " + nodes.length);
        var result=nodes.iterateNext();

        while (result)
          {
              document.write(result.childNodes[0].nodeValue);
              document.write("<br>");
              result=nodes.iterateNext();
          }
    }

    document.write('shit should have displayed by now');
}


path="/"; 

function reload() {
    x=loadXMLDoc("testxml.xml"); //x is now a XMLHttpRequest object
    xml=x.responseXML; //xml is now a response to the request, or null if it failed

    displayNodes();
    console.log("x (XMLHTTPRequest Object) : " + x);
    console.log("xml (XMLHTTPRequest.responseXML) : " + xml);
}

reload();

1 个答案:

答案 0 :(得分:1)

查看Mozilla的using XPath in Javascript文档,似乎XPathResult对象没有您要求的length这样的属性。

因此,当firebug说length : undefined时,这并不一定意味着你在XPath路径或使用evaluate()时做错了什么。我能看到的唯一错误就是要求nodes.length

如果你的结果是快照,你可以要求nodes.snapshotLength,但它不是:

  

当resultType参数中的结果类型指定为ANY_TYPE时,如果返回的结果类型是节点集,那么它将只是UNORDERED_NODE_ITERATOR_TYPE。

现在,当您进行迭代时,您应该获得一个结果节点:文档根节点,即<dataset>元素的(不可见)父节点。接下来,您要求它打印result.childNodes[0].nodeValueresult.childNodes[0]应该是<dataset>元素。根据{{​​3}},元素的.nodeValue为null。所以大概是你的document.write()没有显示任何内容。

相反,请尝试打印result.nodeNamethese docs)。这应该为根节点提供#document,或者为您选择的元素提供名称。

如果您只是想让某些工作,并验证它是否有效,我会改变您的路径"/*"。您将获得更切实的结果,即<dataset>元素。