Skip to content

下面代码的输出是什么?

Posted on:2021年7月3日 at 22:25
fetch("https://www.website.com/api/user/1")
  .then((res) => res.json())
  .then((res) => console.log(res));

第二个.thenres的值等于前一个.then中的回调函数返回的值。 你可以像这样继续链接.then,将值传递给下一个处理程序。

原文转自:https://fe.ecool.fun/topic/0180cac7-51ae-4cc6-afe2-bfecf5448123