【uniapp小程序-上拉加载】
2023-12-19 05:28:38
在需要上拉加载的页面的page.json上添加红框框里面的
onReachBottom() {
if(this.commentCurrent<this.commentTotal){
this.commentCurrent += 1;
this.commentList();
this.status = 'loading';
}else{
this.status = '';
}
},
methods:{
commentList(){
let params = {
courseid:this.courseid,
page:this.commentCurrent
}
commentList(params).then((res)=>{
let {code,list,numpage} = res
if(code==0){
//如果页数>1,需要拼接返回的数据
if (this.commentCurrent > 1) {
list = [...this.commentData, ...list];
}
this.commentData = list
this.commentTotal = numpage
uni.stopPullDownRefresh(); //拿到数据后,停止下拉刷新
this.status = '';
}
})
},
}
文章来源:https://blog.csdn.net/weixin_47416539/article/details/135060710
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!