我是React Native的初学者。我有个问题。 我正在尝试从本机上的api获取数据,但是我做不到。只是模拟器给出了空白页,没有编译器错误或警告消息。
这是我的代码:
import React from 'react';
import { FlatList, ActivityIndicator, Text, View } from 'react-native';
export default class FetchExample extends React.Component {
constructor(props){
super(props);
this.state ={ isLoading: true}
}
componentDidMount(){
return fetch("https://apidojo-yahoo-finance-v1.p.rapidapi.com/market/get-summary?region=US&lang=en", {
"method": "GET",
"headers": {
"x-rapidapi-host": "apidojo-yahoo-finance-v1.p.rapidapi.com",
"x-rapidapi-key": "********"
}
})
.then((response) => response.json())
.then((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.region}, {item.lang}</Text>}
keyExtractor={({id}, index) => id}
/>
</View>
);
}
}
希望能为您提供帮助。
答案 0 :(得分:0)
您尚未在dataSource
中声明state
。在您的状态下声明该变量:
constructor(props){
super(props);
this.state = {
isLoading: true,
dataSource: [] // Add this line
}
}