国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery Ajax 全局調(diào)用封裝實例代碼詳解

2019-11-20 09:49:06
字體:
供稿:網(wǎng)友

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

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

【嘿嘿!雖說我現(xiàn)在基本不用jquery了 ,不過異步概念 是永遠(yuǎn)要用的,就幫助下新人】

jQuery Ajax通用js封裝

第一步:引入jQuery庫

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

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

/*****************************************************************jQuery Ajax封裝通用類 (linjq) *****************************************************************/$(function(){/*** ajax封裝* url 發(fā)送請求的地址* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}* async 默認(rèn)值: true。默認(rèn)設(shè)置下,所有請求均為異步請求。如果需要發(fā)送同步請求,請將此選項設(shè)置為 false。* 注意,同步請求將鎖住瀏覽器,用戶其它操作必須等待請求完成才可以執(zhí)行。* type 請求方式("POST" 或 "GET"), 默認(rèn)為 "GET"* dataType 預(yù)期服務(wù)器返回的數(shù)據(jù)類型,常用的如:xml、html、json、text* successfn 成功回調(diào)函數(shù)* errorfn 失敗回調(diào)函數(shù)*/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 發(fā)送請求的地址* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}* successfn 成功回調(diào)函數(shù)*/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 發(fā)送請求的地址* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}* dataType 預(yù)期服務(wù)器返回的數(shù)據(jù)類型,常用的如:xml、html、json、text* successfn 成功回調(diào)函數(shù)* errorfn 失敗回調(diào)函數(shù)*/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);}});};});

第三步:調(diào)用模擬

<!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,和要傳輸?shù)?data 字段就行了,避免了重復(fù)工作和代碼冗余。

以上內(nèi)容是小編給大家介紹的jQuery Ajax 全局調(diào)用封裝實例代碼詳解的相關(guān)內(nèi)容,希望對大家有所幫助!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 本溪| 江陵县| 陇西县| 当雄县| 磐石市| 漳浦县| 贡觉县| 淮滨县| 门头沟区| 柘城县| 正安县| 克东县| 固镇县| 团风县| 林州市| 海盐县| 平顶山市| 社旗县| 平原县| 新昌县| 阳信县| 临沧市| 崇仁县| 娱乐| 十堰市| 三门峡市| 泸州市| 罗平县| 九台市| 胶南市| 赤城县| 阿拉善左旗| 平阴县| 乌拉特中旗| 刚察县| 浦东新区| 澄城县| 马公市| 镇赉县| 崇义县| 罗山县|