微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决Express.js中res.send和res.json之间的区别

传递对象或数组时,方法是相同的,但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);

解决方法

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。