如何在React Native中从API分页获取的数据

时间:2017-12-05 11:37:22

标签: pagination react-native-android

我正在尝试对使用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()。数据太大所以需要花时间加载。所以我需要添加分页。

1 个答案:

答案 0 :(得分:1)

我认为如果你在服务器上进行分页会更好。