两者之间的实际区别是什么,res.send并且res.json两者似乎都执行相同的响应客户端的操作。
res.send
res.json
传递对象或数组时,方法是相同的,但res.json()也会转换非对象,例如null和undefined,它们是无效的JSON。
res.json()
null
undefined
该方法还使用json replacer和json spaces应用程序设置,因此您可以使用更多选项来格式化JSON。这些选项设置如下:
json replacer
json spaces
app.set('json spaces', 2); app.set('json replacer', replacer);
并传递给一个JSON.stringify()这样的:
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);
该方法最终以a res.send()结尾:
res.send()
this.charset = this.charset || 'utf-8'; this.get('Content-Type') || this.set('Content-Type', 'application/json'); return this.send(body);