如何从https.request
内部返回数据?
这是我的https请求函数,工作正常:
var req = https.request(options, (res) => {
console.log('statusCode: ', res.statusCode);
res.on('data', (d) => {
var l = JSON.parse(d);
console.log(l.firstName);
//The Retuned JSON is HERE <—————————————- HERE
});
});
req.end();
req.on('error', (e) => {
console.error(e);
});
//What I need is the retuned JSON file here <——————————I NEED IT HERE
我通常会在每个嵌套函数中返回一些值但是https.request
我不确定它是如何工作的。