1. ホーム
  2. javascript

[解決済み] Express.jsのres.sendとres.jsonの違いについて

2022-02-19 11:52:20

質問

とはどのような違いがあるのでしょうか? res.sendres.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);

このメソッドは、最終的に res.send() を実行します。

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

return this.send(body);