Pagination.js的数据源不支持动态获取数据吗

官网的文档的数据源是一次性获取完的,如果要动态分页,怎么弄?
图片描述

阅读 2.9k
1 个回答

这不是有文档么?
http://paginationjs.com/docs/...

Function

Provide a custom function, use done to return an array, can achieve above 2 ways.

 dataSource: function(done){
    var result = [];
    for (var i = 1; i < 196; i++) {
        result.push(i);
    }
    done(result);
 }

You can also send a request to get data, use done return asynchronous data.

 dataSource: function(done) {
    $.ajax({
        type: 'GET',
        url: '/test.json',
        success: function(response) {
            done(response);
        }
    });
 }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进