我有代码:
`//...
.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。
答案 0 :(得分:0)
看起来你最后没有接听电话。