使用 JavaScript Promise 讀取 Github 用戶數據

代碼如下:

// Make a request for user.json
fetch('/article/promise-chaining/user.json')
  // Load it as json
  .then(response => response.json())
  // Make a request to GitHub
  .then(user => fetch(`https://api.github.com/users/${user.name}`))
  // Load the response as json
  .then(response => response.json())
  // Show the avatar image (githubUser.avatar_url) for 3 seconds (maybe animate it)
  .then(githubUser => {
    let img = document.createElement('img');
    img.src = githubUser.avatar_url;
    img.className = "promise-avatar-example";
    document.body.append(img);

    setTimeout(() => img.remove(), 3000); // (*)
  });

這裡的語義比較清楚,每一個 then 調用都返回一個 Promise,後續的 then 調用,必須在前一個 then 調用返回的 Promise 被 resolve 之後,才能得到執行。

不過上述代碼有一個缺陷:

看 * 所在行的代碼:在頭像完成顯示並被移除後,如果我們想添加一些額外的處理邏輯,應該怎麼做? 例如,我們想顯示一個用於編輯該用戶或其他內容的表單。

為瞭使鏈可擴展,我們需要返回一個在頭像完成顯示時進行 resolve 的 Promise.

代碼如下:

fetch('/article/promise-chaining/user.json')
  .then(response => response.json())
  .then(user => fetch(`https://api.github.com/users/${user.name}`))
  .then(response => response.json())
  .then(githubUser => new Promise(function(resolve, reject) { // (*)
    let img = document.createElement('img');
    img.src = githubUser.avatar_url;
    img.className = "promise-avatar-example";
    document.body.append(img);

    setTimeout(() => {
      img.remove();
      resolve(githubUser); // (**)
    }, 3000);
  }))
  // triggers after 3 seconds
  .then(githubUser => alert(`Finished showing ${githubUser.name}`));

也就是說,(*) 行中的 .then 處理程序現在返回新的 Promise,該 Promise 僅在 setTimeout (**) 中的 resolve(githubUser) 調用後才被解決。 鏈中的下一個 .then 將等待它。

下圖第 5 行新建的 Promise 對象,這個對象在第 13 行會 resolve,這個 resolve 操作,會觸發等待它的第 17 行的 then 方法。 

作為一種好的實踐,異步操作應始終返回一個 Promise. 這使得在它之後的計劃行動成為可能;即使我們現在不打算擴展鏈,我們以後也可能需要它。

最後我們對代碼進行重構。

function loadJson(url) {
  return fetch(url)
    .then(response => response.json());
}

以上的函數返回一個 Promise,當 response 的 json 數據可用時,這個 promise 後註冊的 .then 函數就會觸發。

看其消費代碼:

26 行 then 裡的箭頭函數觸發時,user 就是 25 行 user.json 數據被反序列化之後形成的 JSON 對象。

function loadGithubUser(name) {
  return loadJson(`https://api.github.com/users/${name}`);
}

隻是對 loadJson 的一層封裝,讓調用者不需要知道 Github user api 具體的 endpoint.

function showAvatar(githubUser) {
  return new Promise(function(resolve, reject) {
    let img = document.createElement('img');
    img.src = githubUser.avatar_url;
    img.className = "promise-avatar-example";
    document.body.append(img);

    setTimeout(() => {
      img.remove();
      resolve(githubUser);
    }, 3000);
  });
}

返回一個 Promise,在其 executor 裡書寫業務邏輯,並通過 resolve(githubUser) 將 Promise 狀態設置為 fulfilled,方便將來的擴展。

最後的完整代碼:

// Use them:
loadJson('/article/promise-chaining/user.json')
  .then(user => loadGithubUser(user.name))
  .then(showAvatar)
  .then(githubUser => alert(`Finished showing ${githubUser.name}`));
  // ...

總結:

如果 .then(或 catch/finally,無關緊要)處理程序返回一個 Promise,則 Promise 鏈的其餘部分會一直等待,直到這個 pending 的 Promise 被 resolve. 當 Promise 內部的 executor 有數據被 resolve 調用時,resolve 輸入的數據(或錯誤)會被進一步傳遞到 Promise chain 裡的其他 Promise.then 中去。

到此這篇關於使用 JavaScript Promise 讀取 Github 用戶數據的文章就介紹到這瞭,更多相關 JavaScript Promise 讀取內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: