1. 程式人生 > >Node.js —— express中 res.json( )和 res.send( )

Node.js —— express中 res.json( )和 res.send( )

1、res.json([body])
傳送一個json的響應。這個方法和將一個物件或者一個數組作為引數傳遞給res.send()方法的效果相同。不過,你可以使用這個方法來轉換其他的值到json,例如null,undefined。(雖然這些都是技術上無效的JSON)。

res.json(null);
res.json({user:'tobi'});
res.status(500).json({error:'message'});

2、res.send([body])
傳送HTTP響應。body引數可以是一個Buffer物件,一個字串,一個物件,或者一個數組。比如:

res.send
(new Buffer('whoop')); res.send({some:'json'}); res.send('<p>some html</p>'); res.status(404).send('Sorry, we cannot find that!'); res.status(500).send({ error: 'something blew up' });

對於一般的非流請求,這個方法可以執行許多有用的的任務:比如,它自動給Content-LengthHTTP響應頭賦值(除非先前定義),也支援自動的HEAD和HTTP快取更新。

當引數是一個Buffer物件,這個方法設定Content-Type響應頭為application/octet-stream,除非事先提供,如下所示:

res.set('Content-Type', 'text/html');
res.send(new Buffer('<p>some html</p>'));

當引數是一個字串,這個方法設定Content-Type響應頭為text/html:

res.send('<p>some html</p>');

當引數是一個物件或者陣列,Express使用JSON格式來表示:

res.send({user:'tobi'});
res.send([1, 2, 3]);

3、res.send( )和res.json( )的區別

當傳遞物件或陣列時,這兩個方法是相同的,但是res.json()也會轉換非物件,如null和undefined,這些無效的JSON。

該方法還使用json replaceacer和json spaces的設定,因此您可以使用更多選項格式化JSON。 例如:

app.set('json spaces', 2);
app.set('json replacer', replacer);

傳遞給JSON.stringify()類似:

JSON.stringify(value, replacer, spacing);
// value: 需要格式化的物件
// replacer: stringify 時如何轉化屬性的規則
// spacing: 鎖緊的空格數量

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);

最終它使用res.send傳送請求

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

return this.send(body);