chjtx / JRoll

Smooth scrolling for the mobile web
http://www.chjtx.com/JRoll/
MIT License
460 stars 91 forks source link

既然是无限加载,其实就是不知道有多少页数的 #59

Closed shijunti19 closed 6 years ago

shijunti19 commented 6 years ago

既然是无限加载,其实就是不知道有多少页数的 那么你就不应该用total和page来判断是否完成,应该单独给一个 scrollBottom: function (page, success, error) { 改成 scrollBottom: function (page, success, error,finsh) { finsh用作完成提示 完成的标志应该是没数据了

jroll-vue-infinite2.js 的加载提示应该支持传入,pc和wap的提示应该是不一样的

chjtx commented 6 years ago

total是可以动态修改的,如果不知道有多少页,可以设个999。一般没人能滑到999页。当后端返回数据告诉你已经结束了,再手动将total设为和page相等的值即可。

关于PC提示的问题,这就尴尬了,JRoll的定位只是解决移动端由其是android端使用div的overflow:auto时数据量大导致卡顿的问题,所以JRoll只为移动端设计的,PC端已经有很优秀的IScroll了