Я только начал с React-Native. Я использую экспо и express. Я пытаюсь подключить фронт к задней части и запрос GET. Я получаю:
'RootErrorBondary': границы ошибок должны реализовывать getDerivedStateFromError ().
В этом методе вернуть обновление состояния для отображения сообщения об ошибке или fallbackUI.
спасибо!
Это мое приложение. js
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import axios from 'react-native-axios';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
greetings: [],
};
}
componentDidMount() {
axios.get('/api/v1').then(function (response) {
const greetings = response.data;
this.setState({ greetings });
console.log(greetings);
})
}
render() {
return (
<View style={styles.container}>
<Text>{greatings}</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default App;