node js sync https请求

时间:2016-07-13 09:47:27

标签: javascript node.js https promise

我有代码:

`//...
.then(function () {

   var opts = {
        method: 'GET',
        agent: new https.Agent({
          rejectUnauthorized: false
        })
      };
   var url = 'https://***';

    return fetch(url, opts)         //work stopped here
      .then(function(res) {
        console.log(res.status);
        return res.text();
      })
})
.then(function(result){
  //do not get here
})`

我想提出请求,传递回复。对于查询,请使用this lib

1 个答案:

答案 0 :(得分:0)

看起来你最后没有接听电话。