Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有大量数据,为了显示这一点,我正在使用启用分页的网格,并加载第一页数据。
我如何在后台加载下一页数据?这样当用户单击下一步按钮时,我将显示预加载的数据。
任何解决方法。
提前致谢, kkchaitu
最简单的解决方案可能是将整组数据加载到商店并使用分页工具栏进行过滤,但是您引用的数据量是“巨大的” - 这可能会使解决方案无效......
或者
准备好 3 组数据(之前 - 开始时为空,实际和之后)并覆盖 onload 事件:
请记住,Ajax 请求是异步的,点击可能比加载更快,这应该在逻辑上进行预测......但这只是一个想法