我正在尝试对使用API获取的记录进行分页。我不知道如何添加分页。我的代码是:
handlePressProduct(id) {
var url='http://www.example.com/menu_category_listing.php?cat_id=';
fetch(url+id, {
method: 'GET'
}).then((response) => { return response.json() } )
.then((responseJson) => {
console.log(responseJson); Actions.category({dataSource:ds.cloneWithRows(responseJson),data:responseJson,})
})
}
将数据正确发布到Actions.category()。数据太大所以需要花时间加载。所以我需要添加分页。
答案 0 :(得分:1)
我认为如果你在服务器上进行分页会更好。