4

以下に定義されている単純な関数があります

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;

サーバー.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;
4

3 に答える 3

1

タイプミスだと思います - 使用してください

querystring.parse(postData).undefinedtext 

requestHandler.js のアップロード機能用

私は同じチュートリアルを進めていますが、ここでも行き詰まりました。

于 2013-11-25T21:52:55.390 に答える
1

このコードは、 ありとなしで 2 回実行されpostDataます。ライナス・G・テイルに感謝します。投稿する前に、コードについてより明確にする必要があります。

于 2012-12-22T12:25:47.670 に答える
0

これは明らかにちょっと遅いですが、あなたとまったく同じエラーがありましたが、ルートを2回実行していませんでした. 私の間違いは、私の postData 変数が未定義であり、結果としてそれが与えていたということでした

undefinedtext=sometext+querttest 

この問題は、postData = "" を初期化することで簡単に修正できます。これが、ここで立ち往生している将来の訪問者に役立つことを願っています.

于 2015-08-09T03:57:14.060 に答える