通过nodejs 发送get请求,服务端响应返回了数据,但是通过res.send 方法返回数据时response无响应,不知道哪位大神能帮忙指点下。 var reqGet = http.request(optionsget, function (resGet) { resGet.on('data’, function (d) { if (d && d != ‘null’) { var data = JSON.parse(d); req.session.user = data; //res.json(data); //console.log(JSON.stringify(data)); //res.end(JSON.stringify(data)); //var j = { u: ‘33556’ }; //res.send(j);
res.send(data);
}
else {
}
res.end();
});
});