1

以下代码接收一个发布请求(使用 express 模块),创建一个新的发布请求并将其传递给另一个处理程序:

app.post('/commit', function (req, res) {
  ....
  var payload = {
    ....
  };

  request({
    method:'POST',
    body:"payload=" + escape(JSON.stringify(payload)),
    headers:{ '...' },
    url:publicUrl
  }, function (err, res, body) {
    if (err) {
      return console.error(err);
    }
    console.log(res.statusCode);
  });

    res.writeHead(200, { 'Content-Type': 'application/json' });
    var obj = {};
    obj['Status'] ="don't know how to get the access code";
    res.end( JSON.stringify( obj ) );
},

现在我希望能够将实际状态代码添加到 json,但我不知道如何访问它,因为我在不同的范围内,对吧?

谢谢,李

4

1 回答 1

1

我的第一个想法是尝试这样的事情(注意我如何将构建响应的代码移动到来自 POST 请求的回调内部):

app.post('/commit', function (req, res) {
  ....
  var payload = {
    ....
  };

  request({
    method:'POST',
    body:"payload=" + escape(JSON.stringify(payload)),
    headers:{ '...' },
    url:publicUrl
  }, function (err, postRes, body) {
    if (err) {
      res.writeHead(500, { 'Content-Type': 'application/json' });
      var obj = {};
      obj['Status'] = 'something went wrong: ' + err;
      res.end( JSON.stringify( obj ) );
    }
    else {
      res.writeHead(200, { 'Content-Type': 'application/json' });
      var obj = {};
      obj['Status'] = postRes.statusCode;
      res.end( JSON.stringify( obj ) );
    }
  });

},
于 2012-08-27T17:20:02.387 回答