ES6学习---Promise封装Ajax请求

        // 接口地址: https://api.apiopen.top/getJoke
        // 成功是resolve 失败是 reject
        const p = new Promise((resolve, reject) => {
            //1. 创建对象
            const xhr = new XMLHttpRequest();

            //2. 初始化
            xhr.open("GET", "https://api.apiopen.top/getJ");

            //3. 发送
            xhr.send();

            //4. 绑定事件, 处理响应结果
            xhr.onreadystatechange = function () {
                //判断
                if (xhr.readyState === 4) {
                    //判断响应状态码 200-299
                    if (xhr.status >= 200 && xhr.status < 300) {
                        //表示成功
                        resolve(xhr.response);
                    } else {
                        //如果失败
                        reject(xhr.status);
                    }
                }
            }
        })
        
        //指定回调
        // 成功执行第一个回调, 失败执行第二个回调
        p.then(function(value){
            console.log(value);
        }, function(reason){
            console.error(reason);
        });

 

上一篇:es6——异步编程的解决方案 Promise


下一篇:ts如在vue中使用