에뮬레이터에서 접근할 때는
const uri = Platform.OS === 'ios'
? 'http://localhost:4000'
: 'http://10.0.2.2:4000'
디바이스에서 접근할 때는
그 디바이스와 PC가 같은 와이파이 즉, 같은 네트워크를 사용하고 있어야 한다.
맥북에서 사용하고 있는 네트워크의 IP 주소를 다음과 같이 uri 주소에 입력한다.
const uri = Platform.OS === 'ios'
? 'http://localhost:4000'
: 'http://192.168.0.4:4000'
참고문서링크
https://naruu098.tistory.com/77
'react native' 카테고리의 다른 글
22.02.27 Can't perform a React state update on an unmounted component (0) | 2022.02.27 |
---|---|
22.02.05 useEffect안에서 useQuery 쓰고 싶을 때 (0) | 2022.02.05 |
22.01.25 [android] GC overhead limit exceeded (0) | 2022.01.25 |
22.01.18 route.params (0) | 2022.01.18 |
22.01.17 firebase 설정 후 pod install 안되는 현상 해결 (0) | 2022.01.17 |