【uniapp小程序-上拉加载】


在需要上拉加载的页面的page.json上添加红框框里面的

js 复制代码
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 = '';
				}
			})
		},
}
相关推荐
初遇你时动了情2 小时前
vue3 uniapp vite 配置之定义指令
javascript·vue.js·uni-app
Monly217 小时前
Uniapp:列表选择提示框
开发语言·javascript·uni-app
萌萌哒草头将军9 小时前
🚀惊了,这个国产软件居然这么牛,比 uniapp 还全能❤️
微信小程序·uni-app·小程序·云开发
大叔_爱编程9 小时前
wx219基于ssm+vue+uniapp的教师管理系统小程序
vue.js·小程序·uni-app·毕业设计·ssm·源码·课程设计
不老刘9 小时前
uniapp实现图文聊天功能
uni-app
qq_4244091910 小时前
uniapp的h5,打开的时候,标题会一闪而过应用名称,再显示当前页面的标题
微信小程序·uni-app·html5
杯莫停丶12 小时前
Web Worker在uniapp鸿蒙APP中的深度应用
前端·uni-app
菜冬眠。1 天前
uni-app/微信小程序接入腾讯位置服务地图选点插件
前端·微信小程序·uni-app
竣子好逑1 天前
uniapp 自定义tabbar
前端·uni-app
Monly211 天前
Uniapp:获取当前定位坐标
前端·javascript·uni-app