useEffect(() => {
비동기 함수 fetchPlaces() {
setIsFetching(true);
{
을 시도해 보세요.
const 장소 = 대기
fetchAvailablePlaces();
navigator.geolocation.getCurrentPosition((위치)=> {
const sortedPlaces = sortPlacesByDistance(
장소,
position.coords.latitude,
위치.좌표.경도
);
setAvailablePlaces(sortedPlaces);
setIsFetching(false);
})
} 잡기(오류) {
setError({
메시지:
오류.메시지 || '장소를 가져올 수 없습니다. 나중에 다시 시도해 주세요.'});
}
setIsFetching(false);
}
fetchPlaces();
}, [])
if(오류) {
복귀(
);
}
** 데이터 가져오기 및 가져오기를 위한 별도의 파일 **
비동기 함수 fetchAvailablePlaces() 내보내기{
const 응답 = 대기
fetch('http://localhost:3000/places');
const resData = 응답을 기다립니다.json();
if(!response.ok) { throw new Error('Failed to fetch places'); } return resData.places;
}
리액트 앱을 빌드하는 동안 오류를 처리하는 이러한 접근 방식이 무엇인지 알고 싶습니다.
위 내용은 오류 처리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!