我刚开始使用库“node-fetch”。在文档中有几个关于如何使用库的例子:
fetch('https://api.github.com/users/github')
.then(function(res) {
return res.json();
}).then(function(json) {
console.log(json);
});
所有示例都是以这种串联的随后调用方式编写的。
难道我不能只接一次电话并完成它吗?
喜欢这个吗?
fetch('https://api.github.com/users/github')
.then(function(res) {
console.log(res.json());
});
多次接听电话有什么好处?