web-dev-qa-db-ja.com

Express.jsのres.sendとres.jsonの違い

res.sendres.jsonの実際の違いは、どちらもクライアントに応答するのと同じ操作を実行するように思われるためです。

186
ram

オブジェクトや配列が渡されるときのメソッドは同じですが、res.json()nullundefinedのように、有効な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);
197
hexacyanide

https://github.com/visionmedia/express/blob/ee228f7aea6448cf85cc052697f8d831dce785d5/lib/response.js#L174

res.jsonは最終的にres.sendを呼び出しますが、その前に:

  • json spacesおよびjson replacerアプリ設定を尊重します
  • 応答がUTF-8文字セットおよびapplication/jsonコンテンツタイプを持つようにします。
61
Peter Lyons

送信されたヘッダーを調べています...
res.sendはcontent-type:text/htmlを使用しています
res.jsonはcontent-typeを使用します。application/json

12
technicalbloke