我在网上看到很多例子:
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
})
})
为什么需要另一个“那么”......或者是否需要?