编辑:正如已经指出的那样,这段代码实际上直接通过 Node 运行良好——我现在意识到问题在于当我尝试使用作为 Heroku 工具包的一部分的工头运行它时。有谁知道为什么我在使用 foreman 命令运行时应该得到不同的结果?
我正在尝试使用 Node.js 解析 XML 提要。到目前为止,我有代码只是为了获取块中的 xml 提要并将它们输出到控制台。出于某种原因,每当我运行它时,我都会在随机点(每次运行时不同)收到“以代码 0 退出”“向所有进程发送 SIGKILL”消息。该消息散布在 xml 的最后几行中(输出示例结束):
01:17:55 web.1 | </item>
01:17:55 web.1 | exited with code 0
01:17:55 web.1 | <item>
01:17:55 system | sending SIGKILL to all processes
01:17:55 | <title>The Church of Scot
C:\CK3\dashboard>
有谁知道可能导致这种提前退出的原因是什么?这是我的代码
var http = require('http');
//var xml2js = require('xml2js');
var options = {
host: 'feeds.bbci.co.uk',
port: 80,
path: '/news/rss.xml'
};
var req = http.get(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("\n\n new chunk \n\n");
console.log(chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.end();
非常感谢您的时间和回复!
-六霍比特人