가져오기: 상태가 정상이 아닐 경우 약속을 거부하고 오류를 잡습니까? 제가 할 일은 이렇습니다. import 'whatwg-fetch'; function fetchVehicle(id) { return dispatch => { return dispatch({ type: 'FETCH_VEHICLE', payload: fetch(`http://swapi.co/api/vehicles/${id}/`) .then(status) .then(res => res.json()) .catch(error => { throw(error); }) }); }; } function status(res) { if (!res.ok) { return Promise.reject() } return res; } 편집: 그 약속은 거절당하지 ..