【翻译】异步 Javascript 系列(四)—— Promise

以下是第四课的翻译内容


Javascript Promise

这节课准备聊Javascript Promise,如上节课所看到的情况,要维护大量异步回调可能相当棘手,可能会导致代码混乱,起码会让你感到头疼。

马上介绍Javascript Promise,让我们能更容易去组织维护这类回调方法。

究竟什么是 Promise? Promise 是一个对象,代表一种暂时还没完成但将来某个时间点会处理的动作,本质上是一种占位符,例如 HTTP 请求等异步操作的结果。

例如我们发起 http 请求数据,一旦发出异步请求,它就会在数据被获取并返回之前先返回 Promise 对象给我们。有了 Promise 对象就可以注册回调函数,当请求完成就会执行这些注册的回调函数。

Promise 是比较新的功能,我们可以通过最新版本 ES6 进行使用。然而还有不少如 Q 之类的库实现了 Promise。

下面我准备用浏览器原生支持的 Promise 库,通过 can I use 要查看浏览器支持,主要 IE 系列不支持。

我会选择支持 ES6 Promise API 的 chrome,如果需要发布代码,建议还是使用如 Q 的 Promise 库,保证全浏览器支持,Q 的使用可以在 github 上查找。


目录结构

-- data
    |_ tweet.json
    |_ friend.json
    |_ video.json
-- async.js
-- index.html

开始创建一个简单的 Promise,首先注意到的是这个看起来有点吓人的 get 函数,实际是一个通过 Ajax 获取数据的方法。

'async.js'
function get(url) {
    return new Promise(function (resolve, reject) {
        var http = new XMLHttpRequest();

        http.open('get', url, true);

        http.onload = function () {
            if (http.status === 200) {
                resolve(JSON.parse(http.response));
            } else {
                resolve(http.statusText);
            }
        };

        http.onerror = function () {
            resolve(http.statusText);
        };

        http.send();
    });
}


将 get 函数返回的 Promise 对象赋给变量 promise,数据返回之前 Promise 对象已赋值给 promise,之前所说的 Promise 是一个可以让我们注册回调函数的占位符对象,当变成已完成状态并且数据返回正常的时候,可以使用 then 方法,而 catch 方法则是用来捕获错误。下面的例子采用了链式写法

'async'
var promise = get('data/tweet.json'); // promise 是一个将来会发生事情的占位符,

promise.then(function (tweet) { // 状态 OK 后执行 then 里的回调函数
    console.log(tweet);
}).then(function (friend) {
    console.log(friend);
}).then(function (video) {
    console.log(video);
}).catch(function (error) {
    console.log(error);
});


你可能会想为什么这种写法比常规的回调函数好,因为 then 和 catch 里的毕竟还是回调函数,实际上更好的是当我们需要写多个异步请求我们可以以链式写法来连接这几个异步请求

'async'
promise.then(function (tweet) {
    console.log(tweet);

    return get('data/friend.json'); // return 的内容将会以下一个 then 回调函数中的参数出现
}).then(function (friend) {
    console.log(friend);

    return get('data/video.json');
}).then(function (video) {
    console.log(video);
}).catch(function (error) {
    console.log(error);
});

这种写法比起嵌套回调函数看起来好多了,是更优雅的处理回调函数的方式。


了解 Promise

下面来了解 get 方法究竟在做什么:

  • get 方法的 url 参数是我们需要请求数据的 url
  • 返回一个 Promise 对象
  • Promise 对象有 resolve 和 reject 函数
    • resolve 是成功时候会执行的函数,函数的参数会返回到 then 的回调函数的参数
    • reject 是失败时候会执行的函数,函数的参数会返回到 catch 的回调函数的参数
  • 在 Promise 的回调函数体里,是第一节课创建 ajax 请求的代码

以上就是创建 Promise 的过程。

'async.js'
function get(url) {
    return new Promise(function (resolve, reject) {
        var http = new XMLHttpRequest();

        http.open('get', url, true);

        http.onload = function () { // 如果浏览器支持 Promise 也会支持 onloady 与 onerror 方法
            if (http.status === 200) {
                resolve(JSON.parse(http.response)); // 当状态码 200,执行 resolve 方法,返回响应内容
            } else { // 否则执行 reject 方法,返回错误信息
                reject(http.statusText);
            }
        };

        http.onerror = function () { // 出其他错误同样执行 reject 方法,返回错误信息
            reject(http.statusText);
        };

        http.send();
    });
}


jQuery 的 Promise

实际上如今的 jQuery 也实现了 Promise,上面例子主要是介绍 Promise 的背景与内里的工作原理,便于学习理解。

利用 jQuery 的 Promise 特性发起多个请求:

'async.js'
$.get('data/tweet.json').then(function(tweet){
    console.log(tweet);

    return $.get('data/friend.json');
}).then(function (friend) {
    console.log(friend);

    return $.get('data/video.json');
}).then(function (video) {
    console.log(video);
}).catch(function (error) {
    console.log(error);
});

跟上节课的 $.get 使用回调方式发起三次请求对比,看起来更容易维护与整洁(抽象了回调函数的代码),有点像同步代码。

你可能感兴趣的:(【翻译】异步 Javascript 系列(四)—— Promise)