两者之间的实际区别是什么res.send
,res.json
因为两者似乎都执行相同的响应客户端操作。
4 回答
传递对象或数组时,方法相同,但res.json()
也会转换非对象,例如null
and undefined
,它们不是有效的 JSON。
该方法还使用json replacer
和json 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()
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.json
最终调用res.send
,但在此之前:
- 尊重
json spaces
和json replacer
应用程序设置 - 确保响应将具有 utf8 字符集和 application/json 内容类型
查看发送的标头...
res.send 使用 content-type:text/html
res.json 使用 content-type:application/json
编辑: send 实际上会根据给定的内容更改发送的内容,因此字符串以 text/html 的形式发送,但是您将其传递给它发出 application/json 的对象。
res.json
将参数强制为 JSON。 res.send
将采用非 json 对象或非 json 数组并发送另一种类型。例如:
这将返回一个 JSON 数字。
res.json(100)
这将返回一个状态代码并发出使用 sendStatus 的警告。
res.send(100)
如果您的参数不是 JSON 对象或数组(null、undefined、boolean、string),并且您想确保它以 JSON 格式发送,请使用res.json
.