嗨,当我尝试从我的node.js
中点击一个网址时,我收到以下错误请求问题:套接字挂起
我的代码在
之下var express = require('express')
app = express.createServer();
var options = {
host:'10.230.125.54',
port:8080,
path:'/'
};
var http = require('http');
app.get('/hitmideation', function(req, response) {
var jsonresponse;
response.contentType('application/json');
console.log('listening');
var req =http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('BODY: ' + chunk);
jsonresponse = chunk;
response.end('json from url:'+ JSON.stringify(jsonresponse));
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.end();
});
console.log('I will be listening on: 1340' );
app.listen(1340);
我该如何处理这个问题!任何帮助将不胜感激
答案 0 :(得分:1)
通过在浏览器中测试,确保options
中的网址正常工作。如果您确定网址正在响应,请尝试按照以下代码段检索内容:
http.get("10.230.125.54:8080", function(res) {
res.setEncoding('utf8');
var content = '';
res.on('data', function (chunk) {
content += chunk;
});
res.on('end', function () {
var obj = JSON.parse(content);
// do whatever with the obj
});
}).on('error', function(err) {
// Handle the err here
});