在以往我們在做ajax時,都要藉助於一般處理程序(.ashx)或web服務(.asmx),並且每一個請求都要建一個這樣的文件.這樣建一大堆ashx文件,比較麻煩,多了看起來也不爽.
現在我們可以藉助webMethod方法來使ajax實現起來更加簡練
1,既然要用WebMethod,那肯定就少不了引用一下命名空間了
using System.Web. Services;
在這裡,為方便開發,我新建了一個頁面專門用於寫WebMethod方法.那樣會比較方便,也比較好管理. 如果ajax請求比較多,可以多建幾個頁面.根據頁面的名稱來作下請求的分類
例,下面貼出後台程式碼:
/// <summary> /// 根据任务ID获取任务名称,任务完成状态,任务数量 /// </summary> /// <param name="id">任务ID</param> /// <returns></returns> [WebMethod] public static string GetMissionInfoById(int id) { CommonService commonService = new CommonService(); DataTable table = commonService.GetSysMissionById(id); //..... return "false"; }
後台的這個WebMethod方法要求是公共的靜態方法,方法上面註意要加上WeMethod屬性;如果要在這個方法裡面操作Session.就得在方法上加上屬性
[WebMethod(EnableSession = true)]//或[WebMethod(true)] public static string GetMissionInfoById(int id) { CommonService commonService = new CommonService(); DataTable table = commonService.GetSysMissionById(id); //..... return "false"; }
2.既然後台的WebMethod方法都已經寫好了.就差著調用了.這裡就用JQuery吧.比較簡練
$.ajax({ type: "POST", contentType: "application/json", url: "WebMethodAjax.aspx/GetMissionInfoById", data: "{id:12}", dataType: "json", success: function() { //请求成功后的回调处理. }, error:function() { //请求失败时的回调处理. } });
que
的Ajax幾個參數做一下簡單的說明,type:請求的類型,這裡必須用post 。 WebMethod方法只接受post類型的請求contentType:傳送訊息至伺服器時內容編碼類型。我們這裡一定要用application/json///<summary> ///jQuery原型扩展,重新封装Ajax请求WebServeice ///</summary> ///<param name="url" type="String">处理请求的地址</param> ///<param name="dataMap" type="String">参数,json格式的字符串</param> ///<param name="fnSuccess" type="Function">请求成功后的回调函数</param> $.ajaxWebService = function(url, dataMap, fnSuccess) { $.ajax({ type: "POST", contentType: "application/json", url: url, data: dataMap, dataType: "json", success: fnSuccess }); }了:
$.ajaxWebService("WebMethodAjax.aspx/GetMissionInfoById", "{id:12}", function(result) {//......});下面再貼一種封裝,是以前跟一經理時,看的他的封裝.覺得還不錯首先也是建一個js檔案,檔名隨你們起了.我這裡就建了一個CommonAjax.js裡面兩個方法,看下面程式碼:
function json2str(o) { var arr = []; var fmt = function(s) { if (typeof s == 'object' && s != null) return json2str(s); return /^(string|number)$/.test(typeof s) ? "'" + s + "'" : s; } for (var i in o) arr.push("'" + i + "':" + fmt(o[i])); return '{' + arr.join(',') + '}'; } function Invoke(url, param) { var result; $.ajax({ type: "POST", url: url, async: false, data: json2str(param), contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { result = msg.d; }, error: function(r, s, e) { throw new Error(); } }); return result; }
var result = Invoke("WebMethodAjax.aspx/GetMissionInfoById", { "name": arguments.Value, "id": id });我們如果用傳台的話說參時要注意一點.Json的key必須跟WebMethod方法的形參一樣,還有參數的順序不可亂.否則會請求失敗.例如後台的方法如下:
[WebMethod] public static string GetMissionInfoById(int Id,string name) { //..... return "false"; }我們要傳兩個參數,格式就按:
[csharp] view plain copy print? {"Id":23,"name":"study"}以上所述是小編給大家介紹的使用Jquery Ajax 請求webservice來實現更簡練的Ajax,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對PHP中文網的支持! 更多使用jQuery Ajax 請求webservice來實現更簡練的Ajax相關文章請關注PHP中文網!