사이의 실제 차이가 무엇 res.send
과 res.json
모두 클라이언트에 대한 응답의 동일한 작업을 수행하는 것 등입니다.
사이의 실제 차이가 무엇 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()
은 결국 a 로 끝납니다.
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
앱 설정을 존중