问题描述
传递对象或数组时,方法相同,但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()
的方法中的代码: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.send
,res.json
因为两者似乎都执行相同的响应客户端操作。