91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery中Ajax全局調用封裝的示例分析

發布時間:2021-07-15 11:34:24 來源:億速云 閱讀:261 作者:小新 欄目:web開發

小編給大家分享一下jquery中Ajax全局調用封裝的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

前言:

有一種情況:全站都要用異步方式來調用 數據,提交數據,那么你每次操作 都會要$.ajax({.....})

寫重復的方法 和代碼,冗余太大, 也浪費時間,雖說你有代碼自動提示補全,但真的不優雅,身為前端極客,是不能允許的!

jQuery Ajax通用js封裝

第一步:引入jQuery庫

<script type="text/javascript" src="/js/jquery.min.js"></script>

第二步:開發Ajax封裝類,已測試通過,可以直接調用,直接貼代碼,講解就省了

/*****************************************************************
         jQuery Ajax封裝通用類 (linjq)    
*****************************************************************/
$(function(){
  /**
   * ajax封裝
   * url 發送請求的地址
   * data 發送到服務器的數據,數組存儲,如:{"date": new Date().getTime(), "state": 1}
   * async 默認值: true。默認設置下,所有請求均為異步請求。如果需要發送同步請求,請將此選項設置為 false。
   *    注意,同步請求將鎖住瀏覽器,用戶其它操作必須等待請求完成才可以執行。
   * type 請求方式("POST" 或 "GET"), 默認為 "GET"
   * dataType 預期服務器返回的數據類型,常用的如:xml、html、json、text
   * successfn 成功回調函數
   * errorfn 失敗回調函數
   */
  jQuery.ax=function(url, data, async, type, dataType, successfn, errorfn) {
    async = (async==null || async=="" || typeof(async)=="undefined")? "true" : async;
    type = (type==null || type=="" || typeof(type)=="undefined")? "post" : type;
    dataType = (dataType==null || dataType=="" || typeof(dataType)=="undefined")? "json" : dataType;
    data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
    $.ajax({
      type: type,
      async: async,
      data: data,
      url: url,
      dataType: dataType,
      success: function(d){
        successfn(d);
      },
      error: function(e){
        errorfn(e);
      }
    });
  };
  
  /**
   * ajax封裝
   * url 發送請求的地址
   * data 發送到服務器的數據,數組存儲,如:{"date": new Date().getTime(), "state": 1}
   * successfn 成功回調函數
   */
  jQuery.axpost=function(url, data, successfn) {
    data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
    $.ajax({
      type: "post",
      data: data,
      url: url,
      dataType: "json",
      success: function(d){
        successfn(d);
      }
    });
  };
  
  /**
   * ajax封裝
   * url 發送請求的地址
   * data 發送到服務器的數據,數組存儲,如:{"date": new Date().getTime(), "state": 1}
   * dataType 預期服務器返回的數據類型,常用的如:xml、html、json、text
   * successfn 成功回調函數
   * errorfn 失敗回調函數
   */
  jQuery.axspost=function(url, data, successfn, errorfn) {
    data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
    $.ajax({
      type: "post",
      data: data,
      url: url,
      dataType: "json",
      success: function(d){
        successfn(d);
      },
      error: function(e){
        errorfn(e);
      }
    });
  };



});

第三步:調用模擬

<!DOCTYPE html>
<html>
  <head>
    <base href="<%=basePath%>">

    <title>jQuery Ajax封裝通用類測試</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <jsp:include page="/view/common/js_taglib.jsp"></jsp:include>
    <script type="text/javascript">
    $(function(){
      $.ax(
        getRootPath()+"/test/ajax.html",
        null,
        null,
        null,
        null, 
        function(data){
          alert(data.code);
        }, 
        function(){
          alert("出錯了");
        }
      );
      
      $.axpost(getRootPath()+"/test/ajax.html", null, function(data){
        alert(data.data);
      });
    
      $.axspost(getRootPath()+"/test/ajax.html",
        null, 
        function(){
          alert("成功了");
        },
        function(){
          alert("出錯了");
      });
    });
     </script>
  </head>
  <body>
     
  </body>
</html>
$.axpost(getRootPath()+"/test/ajax.html", null, function(data){
        alert(data.data);
      });

如上代碼:只要填寫 url,和要傳輸的 data 字段就行了,避免了重復工作和代碼冗余。

以上是“jquery中Ajax全局調用封裝的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通化县| 南岸区| 武穴市| 太湖县| 萨嘎县| 阿拉善左旗| 铅山县| 淄博市| 兰考县| 准格尔旗| 巴林右旗| 肇东市| 衡南县| 奉贤区| 沧州市| 阿坝| 秭归县| 延庆县| 浏阳市| 辽阳县| 老河口市| 岢岚县| 黄冈市| 巴青县| 左权县| 涡阳县| 琼海市| 呈贡县| 安新县| 尉犁县| 孟村| 肇东市| 东阳市| 大宁县| 呼图壁县| 卢龙县| 永登县| 白山市| 山阳县| 河源市| 特克斯县|