1

私はWin8開発を始めていますが、昨日から問題が発生しています。

ここでは MSDN の例に従ってデータを取得しました。データを取得できます (したがって、接続制限の問題ではありません)。しかし問題は、使用する設定に関係なく、\ r\n 文字。

構造化された XML を取得できれば仕事が楽になると思いますので、皆さんが私が間違っていることを明らかにしてくれることを願っています。

ここに私のコードスニペットがあります:

<div id="xhrReport"></div>
<script>
    var xhrDiv = document.getElementById("xhrReport");
    xhrDiv.style.color = "#000000";

    WinJS.xhr({ url: "http://www.w3schools.com/xml/note.xml", responseType: "responseXML"})
        .done(
            function complete(result) {
                var xmlResponse = result.response; 

                xhrDiv.innerText = "Downloaded the page";
                xhrDiv.style.backgroundColor = "#00FF00"; //here goes my breakpoint to check response value

            },
            function error(result) {
                xhrDiv.innerHTML = "Got error: " + result.statusText;
                xhrDiv.style.backgroundColor = "#FF0000";
            },
            function progress(result) {
                xhrDiv.innerText = "Ready state is " + result.readyState;
                xhrDiv.style.backgroundColor = "#0000FF";
            }
        );

</script>

xmlResponse の値は次のとおりです。

"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n<!-- Edited by XMLSpy® -->\r\n<note>\r\n\t<to>Tove</to>\r\n\t<from>Jani</from>\r\n\t<heading>Reminder</heading>\r\n\t<body>Don't forget me this weekend!</body>\r\n</note>\r\n"

HEREは同様の質問で、responseXML responseType を使用して動作しているようです (ただし、@MSDN ガイドには記載されていません)。

私がすでに試したいくつかのこと:

  • responseType を「ドキュメント」として使用し (MSDN ガイドに従って)、result.responseXML を取得します。
  • responseType 引数を省略します。
  • 上記のアプローチを使用します。

今、私はアイデアを使い果たしました。何かご意見は?

4

2 に答える 2

2

再生したいタグを取得するために次のコードを使用してみてください...

function connectToURL(){
    var url = "";

    xmlHttp = GetXmlHttpObject();
    if (xmlHttp == null) {
         return;
    }            
    xmlHttp.onreadystatechange = stateChanged;
    xmlHttp.open("GET", url,true);
    xmlHttp.send(null);
}

// your job will actually start on this one...
function stateChanged() {
        if(xmlHttp != null )
            if (xmlHttp[item.key].readyState == 4 ) {
                try {
                    var xmlDoc = xmlHttp.responseXML.documentElement.getElementsByTagName("TAGYOUWANTTOGET");
                    for (var i = 0; i < xmlDoc.length; i++) {
                       xmlDoc[i].getElementsByTagName("TAG")[0].childNodes[0].nodeValue
                    }
                } catch (e) {
                   //work on the exception
                }
            }
        }     
}

function GetXmlHttpObject(){
    var xmlHttp=null;
    try{
        xmlHttp = new XMLHttpRequest();
    }
    catch(e){
        try{
            xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch(e){
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
    return xmlHttp;
}
于 2012-11-11T22:15:05.950 に答える
0

I think you should set an option for responseType : "document" just like:

  WinJS.xhr({
        url: "http://www.capital.bg/rss/?rubrid=" + groupId,
        responseType:"document"

    }).then(function (result) {
        console.dir(result.response);
    });
于 2012-11-25T18:50:55.117 に答える