「React Native 'fetch()'網路要求失敗:」的原因與解決方案
在React 中使用fetch() API原生專案使用發出網路請求時可能會收到「網路請求失敗」錯誤>
fetch('http://facebook.github.io/react-native/movies.json') .then((response) => response.json()) .then((responseJson) => { return responseJson.movies; }) .catch((error) => { console.error(error); });
。
以上是為什麼我的 React Native `fetch()` 網路請求失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!