나는 fetch()
최근에 API를 엉망으로 만들고 약간 기발한 것을 발견했습니다.
let url = "http://jsonplaceholder.typicode.com/posts/6";
let iterator = fetch(url);
iterator
.then(response => {
return {
data: response.json(),
status: response.status
}
})
.then(post => document.write(post.data));
;
post.data
Promise
객체를 반환 합니다.
http://jsbin.com/wofulo/2/edit?js,output
그러나 다음과 같이 작성된 경우 :
let url = "http://jsonplaceholder.typicode.com/posts/6";
let iterator = fetch(url);
iterator
.then(response => response.json())
.then(post => document.write(post.title));
;
post
여기 Object
에 제목 속성에 액세스 할 수 있는 표준 이 있습니다.
http://jsbin.com/wofulo/edit?js,output
그래서 내 질문은 : 왜 response.json
객체 리터럴에서 약속을 반환하지만 방금 반환되면 값을 반환합니까?
response.json()
응답이 유효한 JSON이 아닌 경우 약속이 거부 될 수 있다고 생각할 때 의미 가 있습니다.