原生JS封裝AJAX請求

eternalshallow發表於2017-12-14

一直在用jQuery方法來寫ajax請求,用的多了,不免對這其中是怎麼實現的產生了興趣,於是乎,小弟閒來無聊研究了一下原生實現ajax請求,網上看了很多前輩們的關於ajax請求的封裝方法,也借鑑了很多經驗,於是乎就出現了小弟的一個原生JS封裝ajax的版本,希望大家看了之後能夠明白,下面就是我實現的方法,其中的註釋很清晰,方便大家的理解。

<script> 
   /**     * 對封裝好的ajax請求進行呼叫     * */
    ajax({
        url:"", //請求地址
        type:'GET',   //請求方式
        data:{name:'zhangsan',age :'23',email:'2372734044@qq.com'}, //請求引數
        dataType:"json",     // 返回值型別的設定
        async:false,   //是否非同步
        success:function (response,xml) {
            console.log(response);   //   此處執行請求成功後的程式碼
        },
        fail:function (status) {
            console.log('狀態碼為'+status);   // 此處為執行成功後的程式碼 
       }    });
    function ajax(options) {
        /**
         * 傳入方式預設為物件
         * */
        options = options || {};
        /**
         * 預設為GET請求
         * */ 
       options.type = (options.type || "GET").toUpperCase(); 
       /**
         * 返回值型別預設為json
         * */
        options.dataType = options.dataType || 'json'; 
       /**
         * 預設為非同步請求
         * */ 
       options.async = options.async || true;
        /**
         * 對需要傳入的引數的處理
         * */
        var params = getParams(options.data);
        var xhr; 
       /**
         * 建立一個 ajax請求
         * W3C標準和IE標準
         */
        if (window.XMLHttpRequest){
            /**
             * W3C標準
             * */
            xhr = new XMLHttpRequest();
        }else{
            /**
             * IE標準
             * @type {ActiveXObject}
             */ 
           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);
                } 
           } 
       };
        if (options.type == 'GET'){ 
           xhr.open("GET",options.url + '?' + params ,options.async);
            xhr.send(null)
        }else if (options.type == 'POST'){ 
           /** 
            *開啟請求
             * */ 
           xhr.open('POST',options.url,options.async);
            /**
             * POST請求設定請求頭
             * */
            xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
            /**
             * 傳送請求引數
             */
            xhr.send(params);
        }    }
    /**
     * 物件引數的處理
     * @param data
     * @returns {string}
     */
    function getParams(data) {
        var arr = [];
        for (var param in data){
            arr.push(encodeURIComponent(param) + '=' +encodeURIComponent(data[param]));
        }
        console.log(arr); 
       arr.push(('randomNumber=' + Math.random()).replace('.')); 
       console.log(arr);
        return arr.join('&');
    }
</script>
複製程式碼

封裝以上的方法主要是因為原生js傳遞請求引數比較麻煩,於是乎改良了一下,希望對大家有幫助,喜歡我的文章的話,就給我來個喜歡吧,

我最喜歡doge了

doge.jpg

相關文章