使节点更好地输出JSON的正确方法是什么(即使用换行符和缩进)?
我基本上希望它输出像JSON.stringify(object, null, 2)
那样的东西,但我认为没有办法配置restify来做到这一点。
在没有修补的情况下实现它的最佳方法是什么?
答案 0 :(得分:8)
您应该可以使用formatters
(请参阅Content Negotiation)来实现此目的,只需为application/json
指定自定义的一个:
var server = restify.createServer({
formatters: {
'application/json': myCustomFormatJSON
}
});
您可以使用稍微修改过的original formatter版本:
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;
}
答案 1 :(得分:0)
我相信这是一个更好的solutoin,代码很简单,没有任何错误检查程序运行,似乎没有任何问题:
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'));
}
}
});