res.send
とres.json
の実際の違いは、どちらもクライアントに応答するのと同じ操作を実行するように思われるためです。
オブジェクトや配列が渡されるときのメソッドは同じですが、res.json()
はnull
や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()
メソッド内のコードで、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);
res.json
は最終的にres.send
を呼び出しますが、その前に:
json spaces
およびjson replacer
アプリ設定を尊重します送信されたヘッダーを調べています...
res.sendはcontent-type:text/htmlを使用しています
res.jsonはcontent-typeを使用します。application/json