一尘不染

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

node.js

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


阅读 329

收藏
2020-07-07

共1个答案

一尘不染

传递对象或数组时,方法是相同的,但res.json()也会转换非对象,例如nullundefined,它们是无效的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);

该方法最终以a res.send()结尾:

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

return this.send(body);
2020-07-07