ajax中資料傳遞的另一種模式:xml

來源:互聯網
上載者:User

XMl
  是現代電腦中無所不在的資料格式,Ajax應用所處的Web瀏覽器環境,特別是XMLHttpRequest對象,對於處理XML提供了很好的本地支援,如果XZmlHttpRequest接收到了一個XML內容類型,例如application/xml或test/xml,它將會響應表現為一個DOM!
下面看段指令碼:

    <script>
    var offset=8;
    function showPopup(name,description)
    {
   
    var win=new DataPopup(name,description,offset,offset,320,320);
    offset+=32;
   
    }
    function DataPopup(name,description,x,y,w,h)
    {
    var bod=document.createElement("div");
    document.body.appendChild(bod);
    this.contentDiv=document.createElement("div");
    this.contentDiv.className="windContents";
    this.contentDiv.innerHTML=description;
    bod.appendChild(this.contentDiv);
    this.win=new windows.Window(bod,name,x,y,w,h);
    }
   
    function showInfo(event)
    {
    var planet=this.id;
    var scriptUrl=planet+".xml";
    new net.ContentLoader(scriptUrl,parseXML);
    }
   
    function parseXML()
    {
    var name="";
    var descrip="";
    var xmlDoc=this.req.responseXML;
    var elDocRoot=xmlDoc.getElementsByTagName("planet")[0];
    if(elDocRoot)
    {
    attrs=elDocRoot.attributes;
    name=attrs.getNamedItem("name").value;
    var ptype=attrs.getNamedItem("type").value;
    if(ptype)
    {
    descrip+="<h2>"+ptype+"</h2>";
    }
    descrip+="<ul>";
    for(var i=0;i<elDocRoot.childNodes.length;i++)
    {
    elChild=elDocRoot.childNodes[i];
    if(elChild.nodeName=="info")
    {
    descrip+="<li>"+elChild.firstChild.data+"</li>\n";
    }
    }
    descrip+="</ul>";
    }
    else{
    alert("no document");
    }
    top.showPopup(name,descrip);
    }
    </script>

showInfo函數簡單地開啟一個封裝在ContentLoader對象中的 XMLHttpRequest對象,提供parseXML()方法作為回調。這個回呼函數比evalScript()方法稍微麻煩一些,因為我們需要在響應的DOM中導航,從中抽取出資料,然後再手工調用showPopup()方法,!以xml資料為中心的應用中可以使用這些資料!
xml的一個很大優點是有助於對資訊進行結構話!這個指令碼中用parseXMl()將函數中將他們轉換成一段HTML的無語立標!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.