react native loop over array
export default class Home extends Component {
constructor(props) {
super(props);
this.state = {
response: [],
user_namez: "",
user_pazz: "",
};
}
componentDidMount() {
axios.get('http://192.168.0.108/easy_backend/app/app_db/stud_data')
.then((response) => {
//as soon as the state is updated, component will render using updated values
this.setState({ response: response});
});
}
render() {
return (
<View>
{
this.state.response.map((y) => {
return (<Text>{y.prnt_usernamez}</Text>);
})
}
</View>
);
}
}