export default class FutureLaunches extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,
dataSource: null
};
}
componentDidMount() {
return fetch("https://launchlibrary.net/1.4/launch")
.then(response => response.json())
.then(responseJson => {
this.setState({
isLoading: false,
dataSource: responseJson.launches
});
})
.catch(error => {
console.log(error);
});
}
render() {
if (this.state.isLoading) {
return (
<View style={styles.container}>
<ActivityIndicator />
</View>
);
} else {
let launches = this.state.dataSource.map((val, key) => {
return (
<View key={key}>
<Text style={styles.name}>{val.name}</Text>
<Text>{val.net}</Text>
<Text>{val.windowstart}</Text>
<Text>{val.windowend}</Text>
<Text>{val.count}</Text>
</View>
);
});
return (
<View style={styles.container}>
<ScrollView contentContainerStyle={styles.contentContainer}>
{launches}
</ScrollView>
</View>
);
}
}
}
});
字符串
JSON中的total大于count,count显示页面上的数据集数量。我怎样才能改变JSON上的计数,以便它可以允许来自https://launchlibrary.net/1.4/launch的所有数据集,在本例中,有183个数据集可用。
1条答案
按热度按时间baubqpgj1#
根据文档,有一个
limit
参数控制页面大小。将URL中的该参数设置为-1
将返回所有结果:https://launchlibrary.net/1.4/launch?limit=-1
个