我使用 jQuery 将一些数据 ajax 发布到 nodejs 网络服务器。
网络服务器代码接收到帖子,但我不知道如何检索有效负载,并且 nodejs 文档网络非常糟糕。我尝试将请求对象转储到调试器控制台,但我看不到那里的数据。如何访问帖子的有效负载?
文档说请求对象是一个实例,http.IncomingMessage
并公开了一个data
带有签名的事件,function (chunk) { }
其中块是一个字符串或一个Buffer
,但如果你不知道你应该在哪里或如何连接到这个事件,或者如何使用缓冲区那么这不是很有帮助。
我注意到在“社区”而不是“文档”链接下隐藏了第二个更具叙述性的手册。这很好。目前不可用。这不是很好。
有人问我是使用框架还是尝试“原生”。无知使我无法直接回答,所以这里是代码
var http = require('http');
var fs = require('fs');
var sys = require('sys');
var formidable = require('formidable');
var util = require('util');
var URL = require('url');
var mimeMap = { htm : "text/html", css : "text/css", json : "application/json" };
var editTemplate = fs.readFileSync("edit.htm").toString();
http.createServer(function (request, response) {
request.addListener('data', function(chunk){
console.log('got a chunk');
});
var body, token, value, mimeType;
var path = URL.parse(request.url).pathname;
console.log(request.method + " " + path);
switch (path) {
case "/getsettings":
try {
mimeType = "application/json";
body = fs.readFileSync("/dummy.json");
} catch(exception) {
console.log(exception.text);
body = exception;
}
//console.log(body.toString());
break;
case "/setsettings":
console.log(request); //dump to debug console
//PROCESS POST HERE
body = ""; //empty response
break;
case "/":
path = "/default.htm";
mimeType = "text/html";
default:
try {
mimeType = mimeMap[path.substring(path.lastIndexOf('.') + 1)];
if (mimeType) {
body = fs.readFileSync(path);
} else {
mimeType = "text/html";
body = "<h1>Error</h1><body>Could not resolve mime type from file extension</body>";
}
} catch (exception) {
mimeType = "text/html";
body = "<h1>404 - not found</h1>";
}
break;
}
response.writeHead(200, {'Content-Type': mimeType});
response.writeHead(200, {'Cache-Control': 'no-cache'});
response.writeHead(200, {'Pragma': 'no-cache'});
response.end(body);
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
现在我添加了这个
request.addListener('data', function(chunk){
console.log('got a chunk');
});
到 createServer 成功函数的开始。它似乎像这样工作,我想这意味着在听众之前调用了成功函数。如果这不是正确的绑定位置,请告诉我。