我正在尝试https://github.com/IonicaBizau/tinyreq。查看文档,使用回调运行示例没有问题。
const tinyreq = require("tinyreq");
// Make a request to example.com
tinyreq("http://example.com/", (err, body) => {
console.log(err || body);
});
但是使用 promises 语法列出的示例没有输出。
// Make a request with custom headers
// Using a promise
tinyreq({
url: "http://example.com/"
, headers: {
"user-agent": "Crawler/1.0"
}
}).then(body => {
console.log(body);
}).catch(err => {
console.log(err);
});
我使用的是节点版本8.3.0。我做错了什么?