複製代碼 代碼如下:
$.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;
}
}
}