如何从javascript https请求

时间:2016-05-01 02:14:45

标签: javascript request

如何从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我不确定它是如何工作的。

0 个答案:

没有答案