React Native - HTTP
In questo capitolo ti mostreremo come usare fetch per la gestione delle richieste di rete.
App.js
import React from 'react';
import HttpExample from './http_example.js'
const App = () => {
return (
<HttpExample />
)
}
export default App
Utilizzando Fetch
Useremo il file componentDidMountmetodo del ciclo di vita per caricare i dati dal server non appena il componente viene montato. Questa funzione invierà la richiesta GET al server, restituirà i dati JSON, registrerà l'output sulla console e aggiornerà il nostro stato.
http_example.js
import React, { Component } from 'react'
import { View, Text } from 'react-native'
class HttpExample extends Component {
state = {
data: ''
}
componentDidMount = () => {
fetch('https://jsonplaceholder.typicode.com/posts/1', {
method: 'GET'
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
this.setState({
data: responseJson
})
})
.catch((error) => {
console.error(error);
});
}
render() {
return (
<View>
<Text>
{this.state.data.body}
</Text>
</View>
)
}
}
export default HttpExample