3

使 node-restify 输出 JSON 更好的正确方法是什么(即使用换行符和缩进)?

我基本上希望它输出类似的东西JSON.stringify(object, null, 2),但我看不出有办法配置 restify 来做到这一点。

在不修补restify的情况下实现它的最佳方法是什么?

4

2 回答 2

8

您应该能够使用formatters(参见Content Negotiation)来实现这一点,只需指定自定义一个application/json

var server = restify.createServer({
  formatters: {
    'application/json': myCustomFormatJSON
  }
});

您可以使用原始格式化程序的略微修改版本:

function myCustomFormatJSON(req, res, body) {
  if (!body) {
    if (res.getHeader('Content-Length') === undefined &&
        res.contentLength === undefined) {
      res.setHeader('Content-Length', 0);
    }
    return null;
  }

  if (body instanceof Error) {
    // snoop for RestError or HttpError, but don't rely on instanceof
    if ((body.restCode || body.httpCode) && body.body) {
      body = body.body;
    } else {
      body = {
        message: body.message
      };
    }
  }

  if (Buffer.isBuffer(body))
    body = body.toString('base64');

  var data = JSON.stringify(body, null, 2);

  if (res.getHeader('Content-Length') === undefined &&
      res.contentLength === undefined) {
    res.setHeader('Content-Length', Buffer.byteLength(data));
  }

  return data;
}
于 2012-06-12T20:29:35.073 回答
0

我相信这是一个更好的解决方案,代码很简单,没有任何错误检查程序运行并且似乎没有任何问题:

https://github.com/restify/node-restify/issues/1042#issuecomment-201542689

var server = restify.createServer({
    formatters: {
        'application/json': function(req, res, body, cb) {
            return cb(null, JSON.stringify(body, null, '\t'));
        }
    }
});
于 2016-07-06T22:13:15.640 回答