溫馨提示×

溫馨提示×

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

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

原生js封裝ajax 案例

發(fā)布時(shí)間:2020-07-12 16:36:18 來源:網(wǎng)絡(luò) 閱讀:925 作者:Percy丶 欄目:開發(fā)技術(shù)

有時(shí)候在做開發(fā)的時(shí)候,會用到j(luò)s但是做的頁面卻不能引用jQuery,擔(dān)心會和別的jQuery版本沖突。所以就自己封裝一個原生的ajax來使用 。

function ajax(options) {
        options = options || {};
        options.type = (options.type || "GET").toUpperCase();
        options.dataType = options.dataType || "json";
        var params = formatParams(options.data);

        //創(chuàng)建 - 非IE6 - 第一步
        if (window.XMLHttpRequest) {
            var xhr = new XMLHttpRequest();
        } else { //IE6及其以下版本瀏覽器
            var xhr = new ActiveXObject('Microsoft.XMLHTTP');
        }

        //接收 - 第三步
        xhr.onreadystatechange = function () {
            if (xhr.readyState == 4) {
                var status = xhr.status;
                if (status >= 200 && status < 300) {
                    options.success && options.success(xhr.responseText, xhr.responseXML);
                } else {
                    options.fail && options.fail(status);
                }
            }
        }

        //連接 和 發(fā)送 - 第二步
        if (options.type == "GET") {
            xhr.open("GET", options.url + "?" + params, true);
            xhr.send(null);
        } else if (options.type == "POST") {

            xhr.open("POST", options.url, true);
                     //設(shè)置表單提交時(shí)的內(nèi)容類型
            xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=utf-8");

            xhr.send(params);//==============================
        }
    }
    //格式化參數(shù)
    function formatParams(data) {
        var arr = [];
        for (var name in data) {
            arr.push(encodeURIComponent(name) + "=" + encodeURIComponent(data[name]));
        }
        arr.push(("v=" + Math.random()).replace(".",""));
        return arr.join("&");
    }

在js里使用的調(diào)用

function findService()
{
 
    ajax({
        url: "xxxxxxx",  //請求地址
        type: "POST",    //請求方式
        dataType: "json",    //數(shù)據(jù)格式
        success: function (response) {
        var array = eval(response);  
            //執(zhí)行成功的代碼
        },
        fail: function (status) {
           //執(zhí)行失敗的代碼
        }
    });

}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI