前端工作总结248-uni-预加载问题
2023-03-10 10:21:07 阅读次数:106
servlet,javascript,前端
<u-loadmore :status="status" />
onReachBottom() {
console.log('触底~~~~')
if (this.pageNo >= this.pages){
this.status = 'nomore';
return;
}
this.status = 'loading';
this.pageNo = ++this.pageNo;
setTimeout(() => {
this.getData()
if (this.pageNo >= this.pages) {
this.status = 'nomore';
} else {
this.status = 'loading';
}
}, 2000)
}
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6053207,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:前端hook项目重构笔记1-重构之裁剪上传功能
下一篇:前端工作总结104-控制弹出框不全屏