您好,登錄后才能下訂單哦!
jQuery.billow = {
getAjax: function (opts, successfn, errorfn) {
//--設(shè)置默認(rèn)參數(shù)
var defaults = {
// 訪問方式:分為POST/GET方式,默認(rèn)為GET;
method: 'GET',
// 訪問地址
url: '',
// 向服務(wù)器請求發(fā)送的數(shù)據(jù)
data: '',
// 默認(rèn)加密,此處為自定義
// encrypt:true,
// 是否異步:true/false,默認(rèn)值:true;
async: true,
// 是否緩存,默認(rèn)緩存
cache: true,
// HTTP頭信息,默認(rèn)值:'application/x-www-form-urlencodedcharset=utf-8';
// application/json
contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
// 接收服務(wù)器返回的數(shù)據(jù)類型:JSON、JSONP、text。默認(rèn)json
dataType: 'json'
};
// 用戶參數(shù)覆蓋默認(rèn)參數(shù)
for (var key in opts) {
defaults[key] = opts[key];
}
// 處理method
defaults.method = defaults.method.toUpperCase();
$.ajax({
type: defaults.method,
async: defaults.async,
dataType: defaults.dataType,
contentType:defaults.contentType,
cache: defaults.cache,
url: defaults.url,
data: defaults.data,
success: successfn,
error: errorfn
});
}
}
使用:
var ajax = $.billow.getAjax();
var opts = {
method:'POST',
url:'',
data:json
}
function sufn(data) {
//服務(wù)器返回數(shù)據(jù)處理
}
ajax(opts,sufn)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。