有什么办法可以通过jsgrid在服务器端进行分页吗?我知道我们可以通过服务器端过滤数据,但不能分页吗?

最佳答案

是的,服务器端分页是jsgrid的基本方案。

使用配置选项pageLoading: true

在这种情况下, Controller 方法loadData(filter)将接受pageIndexpageSize。您应该将这些参数传递给服务器脚本。返回结果的格式应为{ data: [array of items on the current page], itemsCount: [totalAmountOfItems]}

http://js-grid.com/docs/#loaddatafilter-promisedataresult

在GitHub上查看此问题以获取更多详细信息

  • https://github.com/tabalinas/jsgrid/issues/175
  • https://github.com/tabalinas/jsgrid/issues/860
  • 08-26 15:36