res.send和res.json之间的实际区别是什么,因为两者似乎都执行相同的响应客户端操作。
当前回答
res.json强制参数为JSON。Res.send将接受一个非json对象或非json数组并发送另一种类型。例如:
这将返回一个JSON数字。
res.json(100)
这将返回一个状态代码,并发出使用sendStatus的警告。
res.send(100)
如果你的参数不是JSON对象或数组(null, undefined, boolean, string),并且你想确保它以JSON形式发送,请使用res.json。
其他回答
res.json强制参数为JSON。Res.send将接受一个非json对象或非json数组并发送另一种类型。例如:
这将返回一个JSON数字。
res.json(100)
这将返回一个状态代码,并发出使用sendStatus的警告。
res.send(100)
如果你的参数不是JSON对象或数组(null, undefined, boolean, string),并且你想确保它以JSON形式发送,请使用res.json。
查看发送的报头…
Res.send使用content-type:text/html
Res.json使用content-type:application/json
Edit: send实际上根据给定的内容更改发送的内容,因此字符串以text/html的形式发送,但如果传递给它一个对象,它会发出application/json。
参见:res.json源代码上的expressjs。
Res.json最终调用res.send,但在此之前:
尊重json空间和json替换应用程序设置 确保响应将有utf-8字符集和application/json内容类型
当传递对象或数组时,方法是相同的,但res.json()也会转换非对象,如null和undefined,这不是有效的JSON。
该方法还使用json replace和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);
该方法最终以res.send()结束:
this.charset = this.charset || 'utf-8';
this.get('Content-Type') || this.set('Content-Type', 'application/json');
return this.send(body);
推荐文章
- 给一个数字加上st, nd, rd和th(序数)后缀
- 如何以编程方式触发引导模式?
- setTimeout带引号和不带括号的区别
- 在JS的Chrome CPU配置文件中,'self'和'total'之间的差异
- 用javascript检查输入字符串中是否包含数字
- 如何使用JavaScript分割逗号分隔字符串?
- 在Javascript中~~(“双波浪号”)做什么?
- 谷歌chrome扩展::console.log()从后台页面?
- 未捕获的SyntaxError:
- [].slice的解释。调用javascript?
- jQuery日期/时间选择器
- 我如何预填充一个jQuery Datepicker文本框与今天的日期?
- 如何使HTTP请求在PHP和不等待响应
- npm犯错!代码UNABLE_TO_GET_ISSUER_CERT_LOCALLY
- 数组的indexOf函数和findIndex函数的区别