我在 debian 机器上全新安装节点(来自 git )时出现了一个奇怪的行为。似乎问题不在我的代码中,因为在 Windows 上一切正常。我已经知道这不是网站图标问题。
这是我写的:
var app = require('express')()
, server = require('http').createServer(app)
, io = require('socket.io').listen(server)
, url = require('url')
, qs = require('querystring')
, request = require('request')
, fs = require('fs')
其次是
server.listen(3000);
app.post('/postReload', function (req, res) {
var fullBody = '';
req.on('data', function(chunk) {
fullBody += chunk.toString();
if (fullBody.length > 1e6) {
req.connection.destroy();
}
});
req.on('end', function() {
out = qs.parse(fullBody);
vars = out.vars || '';
if(out.module && out.value){
// do the job
// console.log here is done twice !
}
res.writeHead(200, {'Content-Type': 'text/html'})
res.end();
});
});
写另一种方式时:
app.post('/postReload', function (req, res) {
// console.log here is done twice !
}
这个问题影响到每个浏览器,一周的测试并没有解决任何问题。
这里有人有想法吗?
双重动作发生在 curl 或浏览器访问。