返回JSON格式推薦使用res.json
當(dāng)傳遞對(duì)象或數(shù)組時(shí)货葬,這兩個(gè)方法是相同的,但是res.json()也會(huì)轉(zhuǎn)換非對(duì)象劲够,如null和undefined震桶,這些無效的JSON。
該方法還使用json replaceacer和json spaces的設(shè)置征绎,因此您可以使用更多選項(xiàng)格式化JSON蹲姐。 例如:
app.set('json spaces', 2);
app.set('json replacer', replacer);
傳遞給JSON.stringify()類似:
JSON.stringify(value, replacer, spacing);
// value: 需要格式化的對(duì)象
// replacer: stringify 時(shí)如何轉(zhuǎn)化屬性的規(guī)則
// spacing: 鎖緊的空格數(shù)量
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發(fā)送請(qǐng)求
this.charset = this.charset || 'utf-8';
this.get('Content-Type') || this.set('Content-Type', 'application/json');
return this.send(body);