我刚开始使用库“node-fetch”。在文档中,有几个关于如何使用该库的示例:
fetch('https://api.github.com/users/github')
.then(function(res) {
return res.json();
}).then(function(json) {
console.log(json);
});
所有示例都是以这种串联的 then-calls 风格编写的。
难道我不能只有一个 then-call 就可以完成了吗?
像这样?
fetch('https://api.github.com/users/github')
.then(function(res) {
console.log(res.json());
});
有多个 then-calls 有什么好处?