如何解决Express.js 中 res.send 和 res.json 的区别
传递对象或数组时,方法相同,但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
因为两者似乎都执行相同的响应客户端操作。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。