Jquery Ajax解析XML資料(同步及非同步呼叫)簡單一實例_jquery

來源:互聯網
上載者:User

複製代碼 代碼如下:

$.ajax({
                async: true, // 預設true(非同步請求)
                cache: true, // 預設true,設定為 false 將不會從瀏覽器緩衝中載入請求資訊。
                type: "POST", // 預設:GET 請求方式:[POST/GET]
                dataType: "xml", //預設["xml"/"html"] 返回資料類型:["xml" / "html" / "script" / "json" / "jsonp"]
                url: "Test.ashx", // 預設當前地址,發送請求的地址
                data: { key: "value" }, // 發送到伺服器的資料
                error: function(xml) { alert('Error loading XML document' + xml); }, // 請求失敗時調用
                timeout: 1000, // 佈建要求逾時時間
                success: function(xml) { // 請求成功後回呼函數 參數:伺服器返回資料,資料格式.
                    $("#users").empty();
                    // 用Jquery處理xml資料
                    $(xml).find('Table').each(function() {
                        var loginname = $(this).find("Loginname").text();
                        var Name").text();
                        $("#users").append("<li>" + loginname + " - " + name + "</li>");
                    });
                    /*
                    $(xml).find('user').each(function(i) {
                        var loginname = $(xml).find("user loginname").eq(i).text();
                        var user name").eq(i).text();
                        $("#users").append("<p>" + loginname + "</p>" + "<p>" + name + "</p><Br />");
                    })
                    $(xml).find("student").each(function(i){
                        var id"); //取對象
                        var id_value=$(this).children("id").text(); //取文本
                        alert(id_value);//這裡就是ID的值了。
                        alert($(this).attr("email")); //這裡能顯示student下的email屬性。

                        //最後輸出了,這個是cssrain的寫法,貌似比macnie更JQ一點
                        $('<li></li>').html(id_value).appendTo('ol');
                    });
                    */
                }
            })


用ashx檔案返回XML資料:
複製代碼 代碼如下:

<%@ WebHandler Language="C#" %>

using System;
using System.Web;
using System.Text;
using System.Data;

public class Test : IHttpHandler {

    public void ProcessRequest (HttpContext context) {
        context.Response.StatusCode = 200;
        context.Response.Cache.SetCacheability(HttpCacheability.NoCache);

        DataSet ds = new DataSet("AccountList");
        ds = GetList("Account","AccountId","Loginname,Name",50,1,false, false,"1=1");
        context.Response.ContentType = "text/xml";
        context.Response.Charset = "GB2312";
        context.Response.Clear();
        context.Response.Write("<?xml version=\"1.0\" encoding=\"gbk\"?>\n " + ds.GetXml());

        /*
        StringBuilder sb = new StringBuilder();
        sb.Append("<?xml version=\"1.0\" encoding=\"gbk\"?>");
        sb.Append("<AccountList>");
        sb.Append("<Account><loginname>Loro5</loginname><name>wulu</name></user>");
        sb.Append("</Account>");
        context.Response.Write(sb.ToString());
        */


        context.Response.End();

    }

    public bool IsReusable {
        get {
            return false;
        }
    }

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.