嗨,当我尝试从我的 node.js 中点击一个 URL 时,我收到以下错误。
请求问题:
插座挂断
我的代码如下:
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);
我该如何处理这个问题?任何帮助将不胜感激