我有一个expo react native应用,我想在另一个项目中使用我制作的API中的函数。我在Postman中测试了网址,并且该网址正常工作。但是我得到了错误:应用中的Network error failed
。
klt_id
和klt_name
来自“客户”表。网址指向一个函数,该函数显示“客户”表中的所有记录。
这就是我现在拥有的:
constructor(props){
super(props);
this.state ={ isLoading: true}
}
componentDidMount(){
return fetch('http://127.0.0.1:8000/api/v2/klant', )
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson)
this.setState({
isLoading: false,
dataSource: responseJson.data,
}, function(){
});
})
.catch((error) =>{
console.error(error);
});
}
render(){
if(this.state.isLoading){
return(
<View style={{flex: 1, padding: 20}}>
<ActivityIndicator/>
</View>
)
}
return(
<View style={{flex: 1, paddingTop:20}}>
<FlatList
data={this.state.dataSource}
renderItem={({item}) => <Text>{item.klt_id}, {item.klt_name}</Text>}
keyExtractor={({id}, index) => id}
/>
</View>
);
}
}
谢谢!