3

問題:サーバーアプリケーションへの着信HTTPリクエストを受け取ります。リクエストは次のようなものです:http ://example.com?id=abc 。このリクエストを解析し、追加のURLパラメータにパッチを適用して、ホストされているhtmlファイルを呼び出す必要があります。それで:

http://example.com?id=abc=>http://example.com:8080/temp.html?id=abc&name=cdf。_ _

したがって、クライアントにはtemp.htmlが表示されます。

コードは次のとおりです。

function onRequest(request,response) {
if(request.method =='GET') {
        sys.debug("in get");
        var pathName = url.parse(request.url).pathname;
        sys.debug("Get PathName" + pathName + ":" + request.url);
        var myidArr = request.url.split("=");
        var myid = myidArr[1];
        //Call the redirect function
        redirectUrl(myid);
}
http.createServer(onRequest).listen(8888);

function redirectUrl(myid) {
var temp='';
    var options = {
      host: 'localhost',
      port: 8080,
      path: '/temp.html?id=' + myid + '&name=cdf',
      method: 'GET'
    };
  var req = http.request(options, function(res) {
    console.log('STATUS: ' + res.statusCode);
    console.log('HEADERS: ' + JSON.stringify(res.headers));
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
      temp = temp.concat(chunk);
    });
    res.on('end', function(){
        return temp;
      });
    });
  req.end();
  return temp;
}

これはこの問題を解決するための本当にばかげた方法ですが、res.end()コールバックに応答が表示されます。これを親呼び出し関数onRequestに伝播する方法は?

ノードを使用するだけでこれを行う簡単な方法はありますか?静的なhtmlファイルを提供する方法があることを私は知っています。ただし、URLパラメータをtemp.htmlに渡す必要があるため、これを行う方法がわかりません。

4

3 に答える 3

12

より単純なリダイレクトが目的に役立つかどうか疑問に思っています。

  function onRequest(request,response) {
    if(request.method =='GET') {
       sys.debug("in get");
       var pathName = url.parse(request.url).pathname;
       sys.debug("Get PathName" + pathName + ":" + request.url);
       var myidArr = request.url.split("=");
       var myid = myidArr[1];
       var path = 'http://localhost:8080/temp.html?id=' + myid + '&name=cdf';
       response.writeHead(302, {'Location': path});
       response.end();
    }
于 2012-05-24T13:07:20.753 に答える
4

これは、非同期の世界に来るときの古典的なエラーです。ファイルの値ではなくreturn、コールバックをパラメーターとして渡し、次のように終了値を使用して実行します。

function proxyUrl(id, cb) {
  http.request(options, function(res) {
    // do stuff
    res.on('data', function (chunk) {
      temp = temp.concat(chunk);
    });
    res.on('end', function(){
      // instead of return you are using a callback function
      cb(temp);
    });
}

function onRequest(req, res) {
  // do stuff
  proxyUrl(id, function(htmlContent) {
    // you can write the htmlContent using req.end here
  });
}

http.createServer(onRequest).listen(8888);
于 2012-05-24T12:31:53.217 に答える
0

responseオリジナルを関数に渡してredirectUrl、応答に書き込む必要があります。何かのようなもの:

function redirectUrl(myid, response) {
  var options = {
    host: 'localhost',
    port: 8080,
    path: '/temp.html?id=' + myid + '&name=cdf',
    method: 'GET'
  };
  var req = http.request(options, function(res) {
    console.log('STATUS: ' + res.statusCode);
    console.log('HEADERS: ' + JSON.stringify(res.headers));
    res.setEncoding('utf8');

    // Proxy the headers
    response.writeHead(res.statusCode, res.headers);

    // Proxy the response
    res.on('data', function (chunk) {
      response.write(chunk);
    });
    res.on('end', function(){
        response.end();
      });
    });
  req.end();
}

それを呼び出す:

redirectUrl(myid, response);

また、すでにURLを解析しているので、次のようにしてください。

var parsedUrl = url.parse(request.url, true);
sys.debug("Get PathName" + parsedUrl.pathname + ":" + request.url);
//Call the redirect function
redirectUrl(parsedUrl.query.id, response);
于 2012-05-24T12:28:42.977 に答える