为什么fetch在解析json时需要额外的'then'?

时间:2018-03-31 19:50:18

标签: javascript

我在网上看到很多例子:

 fetch(url)
  .then((resp) => resp.json()) // Transform the data into json
  .then(function(obj) {
    // do stuff
    })
  })

为什么不呢:

fetch(url)
  .then(function(data) {
       var obj = data.json();
       // do stuff
    })
  })

为什么需要另一个“那么”......或者是否需要?

0 个答案:

没有答案