239

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

4

4 回答 4

247

传递对象或数组时,方法相同,但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()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);
于 2013-09-27T02:39:36.583 回答
82

https://github.com/visionmedia/express/blob/ee228f7aea6448cf85cc052697f8d831dce785d5/lib/response.js#L174

res.json最终调用res.send,但在此之前:

  • 尊重json spacesjson replacer应用程序设置
  • 确保响应将具有 utf8 字符集和 application/json 内容类型
于 2013-09-27T02:41:51.617 回答
21

查看发送的标头...
res.send 使用 content-type:text/html
res.json 使用 content-type:application/json

编辑: send 实际上会根据给定的内容更改发送的内容,因此字符串以 text/html 的形式发送,但是您将其传递给它发出 application/json 的对象。

于 2016-05-17T12:32:11.050 回答
1

res.json将参数强制为 JSON。 res.send将采用非 json 对象或非 json 数组并发送另一种类型。例如:

这将返回一个 JSON 数字。

res.json(100)

这将返回一个状态代码并发出使用 sendStatus 的警告。

res.send(100)

如果您的参数不是 JSON 对象或数组(null、undefined、boolean、string),并且您想确保它以 JSON 格式发送,请使用res.json.

于 2020-06-04T14:23:17.250 回答