Express.js 中 res.send 和 res.json 的区别

问题描述

传递对象或数组时,方法相同,但res.json()也会转换非对象,例如nulland undefined,它们不是有效的 JSON。

方法还使用json replacerjson spaces应用程序设置,因此您可以使用更多选项格式化 JSON。这些选项设置如下:

app.set('json spaces', 2);
app.set('json replacer', replacer);

并传递给JSON.stringify()这样的:

JSON.stringify(value, replacer, spacing);
// value: object to format
// replacer: rules for transforming properties encountered during stringifying
// spacing: the number of spaces for indentation

这是该方法没有res.json()方法中的代码res.send()

var app = this.app;
var replacer = app.get('json replacer');
var spaces = app.get('json spaces');
var body = JSON.stringify(obj, replacer, spaces);

方法最终以 ares.send()结束:

this.charset = this.charset || 'utf-8';
this.get('Content-Type') || this.set('Content-Type', 'application/json');

return this.send(body);

解决方法

两者之间的实际区别是什么res.sendres.json因为两者似乎都执行相同的响应客户端操作。