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

2022-08-30 00:34:37

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


答案 1

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

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

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);

该方法最终为:res.send()

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

return this.send(body);

答案 2

参见:expressjs上的res.json源代码

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

  • 尊重 和 应用设置json spacesjson replacer
  • 确保响应将具有字符集和内容类型utf-8application/json