Node.js:Object在响应对象中转换为undefined

时间:2012-12-22 10:02:53

标签: javascript node.js

我有一个如下定义的简单功能

function upload(response, postData) {
    console.log("Received: " + postData);
    response.writeHead(200,{"Content-Type":"text/plain"});
    response.write("You've sent text: " + querystring.parse(postData).text);
    response.end();
}

当我将数据记录到控制台时,它显示正确,但在写入响应对象时显示为“未定义”。为什么会这样?我的代码中有错误吗?

整个代码

route.js

function route(handle, pathname, response, postData) {
    console.log("About to route a request for " + pathname);
    if(typeof(handle[pathname]) === 'function') {
        console.log(postData);
        handle[pathname](response, postData);
    } else {
        console.log("no request handler found for " + pathname);
        response.writeHead(404, {"Content-Type": "text/plain"});
        response.write("404 Not found");
        response.end();
    }
}

exports.route = route;

requestHandler.js

var exec = require("child_process").exec;
var querystring = require("querystring");

function start(response, postData) {
    console.log("request handler 'start' was called");
    var body = '<html>' +
    '<head>' +
        '<meta http-equiv="Content-Type" content="text/html; ' +
        'charset=UTF-8" />' +
    '</head>'+
    '<body>'+
        '<form action="/upload" method="post">'+
            '<textarea name="text" rows="20" cols="60"></textarea>'+
            '<input type="submit" value="Submit text" />'+
        '</form>'+
    '</body>' + '</html>';

    response.writeHead(200,{"Content-Type": "text/html"});
    response.write(body);
    response.end();
}

function upload(response, postData) {
    console.log("Received: " + querystring.parse(postData).text);
    response.writeHead(200,{"Content-Type":"text/plain"});
    response.write("You've sent text: " + querystring.parse(postData).text);
    response.end();
}

exports.start = start;
exports.upload = upload;

server.js

var http = require("http");
var url = require("url");

function start(route,handle) {

    function onRequest(request,response) {
        var postData = "";
        var pathname = url.parse(request.url).pathname;
        console.log("Request received for " + pathname + " received.");
        request.setEncoding("utf8");
        request.addListener("data", function(postDataChunk) {
            postData += postDataChunk;
            console.log("Received POST data chunk '" + postDataChunk + "'.");
            });
        request.addListener("end", function() {
            console.log(postData);
            route(handle, pathname, response, postData);
            });
        route(handle,pathname,response);
    }

    http.createServer(onRequest).listen(8888);
    console.log("Server has started...");
}

exports.start = start;

3 个答案:

答案 0 :(得分:1)

使用和不使用postData时代码执行两次。谢谢Linus G Theil。在发布之前我应该​​更清楚地了解代码。

答案 1 :(得分:1)

我认为这是一个错字 - 使用

querystring.parse(postData).undefinedtext 

用于requestHandler.js中的上传功能

我正在完成相同的教程并且也被困在这里。

答案 2 :(得分:0)

这显然有点晚了,但我和你有同样的错误,但我没有执行两次路线。我的错误是我的postData变量未定义,因此它给出了

undefinedtext=sometext+querttest 

我初始化你的postData =“”很容易解决这个问题。希望这有助于任何陷入困境的未来访客。