当前位置:   article > 正文

【ES6】es6封装好的ajax请求 (类实现)_es6 ajax请求

es6 ajax请求

以下是封装好的es6 ajax请求

class Ajax {
    constructor(xhr) {
        xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
        this.xhr = xhr;
    }

    send(options) {
        let xhr = this.xhr;

        let opt = {
            type: options.type || 'GET',
            url: options.url || '',
            async: options.async || 'true',
            dataType: options.dataType || 'json',
            questring: options.questring || ''
        };

        return new Promise((resolve, reject) => {
            xhr.open(opt.type,opt.url,opt.async);

            xhr.onreadystatechange = () => {
                if(xhr.readyState === 4) {
                    if(xhr.status === 200){
                        if(opt.dataType === 'json'){
                            const data = JSON.parse(xhr.responseText);
                            resolve(data);
                            console.log(data);
                        }
                    }else {
                        reject(new Error(xhr.status || 'Server is fail.'));
                    }
                }
            };
            xhr.onerror = () => {
                reject(new Error(xhr.status || 'Server is fail.'));
            };
            xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
            xhr.send(opt.questring);
        })
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

用法

let ajax = new Ajax();
ajax.send({
	type : 'POST',
    url:'https://www.baidu.com/api/newsList.php'
});
  • 1
  • 2
  • 3
  • 4
  • 5

经测试可用。
如有缺漏,请指出。谢谢。
挚谢阅读。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/148157
推荐阅读
相关标签
  

闽ICP备14008679号