Jquery ajax調用webservice總結

来源:http://www.cnblogs.com/liujianshe1990-/archive/2017/10/07/7635151.html
-Advertisement-
Play Games

jquery ajax調用webservice(C#)要註意的幾個事項: 1、web.config里需要配置2個地方 <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false ...


jquery ajax調用webservice(C#)要註意的幾個事項:

1、web.config里需要配置2個地方

<httpHandlers>
      <remove verb="*" path="*.asmx"/>
      <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    </httpHandlers>
在<system.web></system.web>之間加入
<webServices>
      <protocols>
        <add name="HttpPost" />
        <add name="HttpGet" />
      </protocols>
    </webServices>

2.正確地編寫webserivce的代碼

  1 /// <summary>
  2     /// UserValidate 的摘要說明
  3     /// </summary>
  4     [WebService(Namespace = "http://tempuri.org/")]
  5     [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
  6     [System.ComponentModel.ToolboxItem(false)]
  7     // 若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消對下行的註釋。
  8      [System.Web.Script.Services.ScriptService]
  9     public class UserValidate : System.Web.Services.WebService
 10     {
 11         DFHon.Content.Common.rootPublic rp = new DFHon.Content.Common.rootPublic();
 12         [WebMethod]
 13         [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
 14         public string ValidateUserLogState()
 15         {
 16             string result = "";
 17             HttpCookie cookie = HttpContext.Current.Request.Cookies["DHFonMenberInfo"];
 18             if (cookie != null)
 19             {
 20                 string username = System.Web.HttpUtility.UrlDecode(cookie["MenberName"]);
 21                 int ipoint = 0;
 22                 int gpoint = 0;
 23                 try
 24                 {
 25                     DataTable dt = UserBll.ExecuteUserAllInfo(username);
 26 
 27                     if (dt.Rows.Count > 0)
 28                     {
 29                         ipoint = int.Parse(dt.Rows[0]["iPoint"].ToString());
 30                         gpoint = int.Parse(dt.Rows[0]["gPoint"].ToString());
 31                     }
 32                 }
 33                 catch
 34                 { }
 35                 result = "{'user':{'id':'" + cookie["UserId"] + "','name':'" + username + "','message':'" + rp.getUserMsg(DFHon.Global.CurrentCookie.UserName) + "','ipoint':'" + ipoint.ToString() + "','gpoint':'" + gpoint.ToString() + "'}}";
 36             }
 37             else
 38             {
 39                 result = "{'user':{'id':'0','name':'','message':'0','ipoint':'0','gpoint':'0'}}";
 40             }
 41             return result;
 42         }
 43 
 44         [WebMethod]
 45         [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
 46         public string UserLogin(string userName, string userPwd)
 47         {
 48             string returnVal = "";
 49             try
 50             {
 51                 GlobalUserInfo info;
 52                 DFHon.Content.UserLogin _UserLogin = new DFHon.Content.UserLogin();
 53                 EnumLoginState state = _UserLogin.PersonLogin(HttpUtility.UrlDecode(userName), userPwd, out info);
 54                 if (state == EnumLoginState.Succeed)
 55                 {
 56                     DFHon.Global.CurrentCookie.Set(info);
 57                     DFHon.API.PDO.DiscuzNT.PassportLogin.UserLogin(Server.UrlDecode(userName), userPwd, -1);
 58                     int ipoint = 0;
 59                     int gpoint = 0;
 60                     DataTable dt = UserBll.ExecuteUserAllInfo(userName);
 61 
 62                     if (dt.Rows.Count > 0)
 63                     {
 64                         ipoint = int.Parse(dt.Rows[0]["iPoint"].ToString());
 65                         gpoint = int.Parse(dt.Rows[0]["gPoint"].ToString());
 66                     }
 67                     returnVal = "{'user':{'id':'" + info.UserId.ToString() + "','name':'" + info.UserName + "','message':'" + rp.getUserMsg(userName) + "','ipoint':'" + ipoint.ToString() + "','gpoint':'" + gpoint.ToString() + "'}}";
 68                 }
 69                 else
 70                 {
 71                     int ids = 0;//狀態:-2用戶被鎖定 -1用戶名密碼錯誤
 72                     switch (state)
 73                     {
 74                         case EnumLoginState.Err_Locked:
 75                             ids = -2;
 76                             break;
 77                         case EnumLoginState.Err_UserNameOrPwdError:
 78                             ids = -1;
 79                             break;
 80                         default:
 81                             break;
 82                     }
 83                     returnVal = "{'user':{'id':'" + ids + "','name':'','message':'0','ipoint':'0','gpoint':'0'}}";
 84                 }
 85             }
 86             catch
 87             {
 88                 returnVal = "{'user':{'id':'0','name':'','message':'0','ipoint':'0','gpoint':'0'}}";
 89             }
 90             return returnVal;
 91         }
 92         [WebMethod]
 93         public string UserLogout()
 94         {
 95             if (HttpContext.Current.Request.Cookies["DHFonMenberInfo"] != null)
 96             {
 97                 HttpCookie cookie = new HttpCookie("DHFonMenberInfo");
 98                 cookie.Expires = System.DateTime.Now.AddDays(-1);
 99                 cookie.Domain = DFHon.Config.BaseConfig.getV("weblogin");
100                 HttpContext.Current.Response.AppendCookie(cookie);
101             }
102             return "1";
103         }
104         DFHon.Content.user UserBll = new DFHon.Content.user();
105         [WebMethod]
106         public string ValidateUserEmail(string email)
107         {
108             string result = "0";//返回的結果 -2郵箱為空 -1郵箱格式不正確 0郵箱存在 1填寫正確
109             if (string.IsNullOrEmpty(email))
110             {
111                 result = "-2";//郵箱為空
112             }
113             else if (!IsValidEmail(email))
114             {
115                 result = "-1";//郵箱格式不正確
116             }
117             else if (UserBll.sel_useremail(email) > 0)
118             {
119                 result = "0";//郵箱存在
120             }
121             else
122             {
123                 result = "1";//可以註冊
124             }
125             return result;
126         }
127 
128         [WebMethod]
129         public string ValidateUserName(string username)
130         {
131             string result = "0";//返回值:-1用戶名長度為2-16;0用戶名存在;1可以註冊
132             if (username == "" || username == null || username.Length < 2 || username.Length > 16)
133             {
134                 result = "-1";
135             }
136             else if (UserBll.sel_username(username) != 0)
137             {
138                 result = "0";
139             }
140             else
141             {
142                 result = "1";
143             }
144             return result;
145         }
146 
147         public bool IsValidEmail(string strIn)
148         { // Return true if strIn is in valid e-mail format. 
149             return System.Text.RegularExpressions.Regex.IsMatch(strIn, @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$");
150         }
151     }
WebService
  1 <script>
  2         $(function() {
  3             $("#userloging").show();
  4             //登錄框處理開始
  5             //載入登錄狀態
  6             $.ajax({
  7                 type: "POST", //訪問WebService使用Post方式請求
  8                 contentType: "application/json;charset=utf-8", //WebService 會返回Json類型
  9                 url: "/API/Service/UserValidate.asmx/ValidateUserLogState", //調用WebService
 10                 data: "{}", //Email參數
 11                 dataType: 'json',
 12                 beforeSend: function(x) { x.setRequestHeader("Content-Type", "application/json; charset=utf-8"); },
 13                 error: function(x, e) { },
 14                 success: function(response) { //回調函數,result,返回值
 15                     $("#userloging").hide();
 16                     var json = eval('(' + response.d + ')');
 17                     var userid = json.user.id;
 18                     if (userid > 0) {
 19                         $("#spanusername").html(json.user.name);
 20                         $("#spanmessagenum").html(json.user.message);
 21                         $("#userloginsucced").show();
 22                         $("#userloginbox").hide();
 23                     }
 24                 }
 25             });
 26             //登錄
 27             $("#userlogbutton").click(function() {
 28                
 29                 var username = $("#username").val();
 30                 var userpwd = $("#userpassword").val();
 31                 if (username != "" && userpwd != "") {
 32                     $("#userloging").show();
 33                     $.ajax({
 34                         type: "POST", //訪問WebService使用Post方式請求
 35                         contentType: "application/json;charset=utf-8", //WebService 會返回Json類型
 36                         url: "/API/Service/UserValidate.asmx/UserLogin", //調用WebService
 37                         data: "{userName:'" + username + "',userPwd:'" + userpwd + "'}", //Email參數
 38                         dataType: 'json',
 39                         beforeSend: function(x) { x.setRequestHeader("Content-Type", "application/json; charset=utf-8"); },
 40                         error: function(x, e) {
 41                         },
 42                         success: function(result) { //回調函數,result,返回值
 43                             $("#userloging").hide();
 44                             var json = eval('(' + result.d + ')');
 45                             var userid = json.user.id;
 46                             if (userid > 0) {
 47                                 $("#spanusername").html(json.user.name);
 48                                 $("#spanmessagenum").html(json.user.message);
 49                                 $("#userloginsucced").show();
 50                                 $("#userloginbox").hide();
 51                             }
 52                             else {
 53                                 switch (userid) {
 54                                     case -2:
 55                                         alert("用戶被鎖定!請30分鐘後再登錄!");
 56                                         $("#username").focus();
 57                                         break;
 58                                     case -1:
 59                                         alert("用戶名或密碼錯誤!請核對您的用戶名和密碼!");
 60                                         $("#userpassword").focus();
 61                                         break;
 62                                     default:
 63                                         alert("登錄失敗!請核對您的用戶名和密碼之後重試!");
 64                                         $("#userpassword").focus();
 65                                         break;
 66                                 }
 67                             }
 68                         }
 69                     });
 70                 }
 71                 else if (username == "") {
 72                     alert("用戶名不能為空!");
 73                     $("#username").focus();
 74                 }
 75                 else if (userpwd == "") {
 76                     alert("密碼不能為空!");
 77                     $("#userpassword").focus();
 78                 }
 79             });
 80             //退出
 81             $("#logout").click(function() {
 82                 $("#userloging").show();
 83                 $.ajax({
 84                     type: "POST", //訪問WebService使用Post方式請求
 85                     contentType: "application/json;utf-8", //WebService 會返回Json類型
 86                     url: "/API/Service/UserValidate.asmx/UserLogout", //調用WebService
 87                     data: "{}", //Email參數
 88                     dataType: 'json',
 89                     beforeSend: function(x) { x.setRequestHeader("Content-Type", "application/json; charset=utf-8"); },
 90                     success: function(result) { //回調函數,result,返回值
 91                         $("#userloging").hide();
 92                         if (result.d > 0) {
 93                             $("#userloginsucced").hide();
 94                             $("#userloginbox").show();
 95                         }
 96                     }
 97                 });
 98 
 99             }); //登錄框處理結束
100 
101         });
102         </script>
ajax
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 題目鏈接 Problem Description You have got a cylindrical cup. Its bottom diameter is 2 units and its height is 2 units as well.The height of liquid level i ...
  • 是的,我是想到什麼知識點就說什麼,沒有固定的主題,我的標題都是在寫完博客再給的。本篇博文說說列表進階話題。其實列表應該是比較熟悉的了,而毫不誇張的說,在實際的開發中,列表也是使用的最多的,以後你會體會到我說的這句話的。 列表解析 1.什麼是列表解析: 根據已有列表,高效生成新列表的方式,還有另一個叫 ...
  • Card Collector HDU - 4336 ans[S]表示獲得S的卡片次數的期望考慮到達S前一次的卡片1.獲得一張已獲得的 期望是ans[S]*sum{p[i]|i在S中}2.獲得一張未獲得的 期望是sum{ans[S-i]*p[i]|i在S中}3.未獲得卡片 期望是ans[S]*p[0] ...
  • 過濾器 字面義上理解的過濾器類似下圖,從一堆物品中篩選出符合條件的留下,不符合的丟棄。 GOF 職責鏈 GOF中有一種設計模式叫職責鏈,或者叫責任鏈,常規的UML圖如下: 正統的職責鏈是將一個請求發給第一個接收者,接收者判斷是否屬於自己能處理的,如果能處理則執行操作並中止請求下發,流程到此為止。如果 ...
  • 設計模式的最終目的是解決軟體的高可維護性和高復用性問題以及應對大數據、高併發、高智能的挑戰。 設計模式遵循的原則: 1 開閉原則。對開展開放,對修改關閉。不修改原代碼的前提下實施功能擴展。 2 里氏代換。子類可以代替基類出現在任何地方。 3 依賴倒轉。依賴於抽象,不要依賴於實現。代碼往上走,數據往下 ...
  • (2.2)第二種擴展方式,隱示擴展,通過__proto__屬性。 2,簡單方式實現繼承 使用圖梳理一下原理: 索引的變化: (1) ...
  • 編寫高效率的js,第一步就是將自己的代碼風格規範起來,畢竟寫一堆爛代碼,是一件讓自己很難容忍的事情。我就是這樣,業精於勤荒於嬉,行成於思毀於隨,對代碼編寫提出高標準,對團隊,對個人都是一件應該努力的方向。 進入正題,2017年10月起,我會每周優先更新兩個重要部分,以下藍色字體代表已更新的內容,黑色 ...
  • 前 言 MUI是一款最接近原生APP體驗的高性能前端框架,它的比較重要的功能是:下拉刷新、側滑導航、滑動觸發操作菜單和頂部(底部)選項卡等 最近用MUI做手機app應用的時候,遇到的小bug。順便研究了一下這個tab-top-webview-main,這裡給大家分享一下。 1主頁代碼 2子頁代碼 3 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...