关于javascript:使用-JavaScript-Promise-读取-Github-某用户的数据

29次阅读

共计 2549 个字符,预计需要花费 7 分钟才能阅读完成。

代码如下:

// 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 中去。

正文完
 0