배경 : 저는 반응하는 네이티브와 레일을 사용하고 Kindle Fire HD 태블릿에서 개발하고 있습니다. fetch를 사용하여 Macbook에서 로컬로 실행중인 레일 서버에 연결하려고하면 다음 오류가 발생합니다.안드로이드에서 React-Native fetch() 네트워크 요청이 실패했습니다.
TypeError: Network request failed
at XMLHttpRequest.xhr.onerror (index.android.bundle:12432)
at XMLHttpRequest.dispatchEvent (index.android.bundle:15169)
at XMLHttpRequest.setReadyState (index.android.bundle:14953)
at XMLHttpRequest.__didCompleteResponse (index.android.bundle:14809)
at index.android.bundle:14904
at RCTDeviceEventEmitter.emit (index.android.bundle:5866)
at MessageQueue.__callFunction (index.android.bundle:4838)
at index.android.bundle:4654
at MessageQueue.__guard (index.android.bundle:4809)
at MessageQueue.callFunctionReturnFlushedQueue (index.android.bundle:4653)
다음은 가져 오기 요청입니다.
fetch('https://192.168.X.X:8080/api/collections', {
method: 'GET',
body: null,
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson)
return success(responseJson);
})
.catch((err) => {
errors(err);
});
주위를 검색 할 때 localhost/127.0.0.1을 서버의 ip로 대체하는 것이 좋습니다. 그러나 그것은 도움이되지 않은 것 같습니다.
브라우저 (예 : Chrome)를 사용하여 태블릿에서 api 끝점에 액세스 할 수 있습니까? –