我正在使用此代碼向我自己的服務器發出HTTP請求。我在chunk
中收到了相應的回覆。Node.js寫入http請求響應
http.createServer(function (req, res) {
var options = {
host: '<my ip>',
port: 8080,
method: 'GET',
path: '/content?data='+somedata
};
var call = http.request(options, function(res){
res.setEncoding('utf8');
res.on('data', function(chunk){
console.log("got response"+chunk);
});
}).on("error", function(e){
console.log("Got error: " + e.message);
});
call.end();
}).listen(3000);
我的問題是如何將這個塊打印到我的瀏覽器?
爲什麼downvote? –
對不起,我對node.js很陌生。我不瞭解變量的範圍。 –