가비엘
'fetch json() catch' 태그의 글 목록

fetch json() catch

개발팁/개발 팁

fetch 로 Json 데이터를 promise Reject 해서 catch 오류를 받을 경우 Json으로 받는방법

fetch 로 Json 데이터를 promise Reject 해서 catch 오류를 받을 경우 Json으로 받는방법 상황 fetch로 Json데이터를 가져오는 api를 호출하는데.. http staus가 정상이 아니면 catch 로 가도록 Promise.reject 시킨다. 근데 reject하는 json 객체 안에 error코드가 있는데.. 넘긴 json객체는 안넘어오고 Promise 객체가 넘어왔다. reject 시 json객체로 넘기는 방법을 찾아봤다. fetch('/api/', { method: 'POST', headers: { 'Content-Type': 'application/json;charset=utf-8' }, body: JSON.stringify(this.formData) }) .then(..