0
The React Native docsリアクト - ネイティブのAPIをフェッチため、次のコードを示しています。反応ネイティブのフェッチAPIでサーバーの応答を待っている間にアクションを実行するにはどうすればよいですか?
function getMoviesFromApiAsync() {
return fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
.catch((error) => {
console.error(error);
});
}
私が探している何がfetch
がサーバーを呼び出している間にロード・スクリプトのようなものを置く場所、以下の非のようなものです作業コード:
function getMoviesFromApiAsync() {
return fetch('https://facebook.github.io/react-native/movies.json')
.whileWating(() => {
// This is the type of thing I want to put into the fetch
console.log('Waiting for the server response.')
})
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
.catch((error) => {
console.error(error);
});
}