小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序渲染列表,连续多次下拉触底时向集合内添加数据,触底加载100多次后集合内容持续增加,但页面不渲染展示添加进集合的内容。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
getUserList() { wx.showLoading() http.get(questionnaire.userList, this.data.param).then(res => { if (this.data.param.page === 1) { this.setData({ studentList: res.rows, studentTotal: res.length }) } else { let stuList = this.data.studentList; if (res.rows.length > 1) { for (let i = 0; i < res.rows.length; i++) { stuList.push(res.rows[i]) } this.setData({ studentList: stuList, isBottom: false, }) } else { this.setData({ isBottom: true }) } } wx.hideLoading({}) }) },
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/extended/component-plus/
recycle-view
要看你代码是怎么写的,100多页列表的数据是不是一把setData的,如果是,就是这个原因导致的
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
getUserList() { wx.showLoading() http.get(questionnaire.userList, this.data.param).then(res => { if (this.data.param.page === 1) { this.setData({ studentList: res.rows, studentTotal: res.length }) } else { let stuList = this.data.studentList; if (res.rows.length > 1) { for (let i = 0; i < res.rows.length; i++) { stuList.push(res.rows[i]) } this.setData({ studentList: stuList, isBottom: false, }) } else { this.setData({ isBottom: true }) } } wx.hideLoading({}) }) },
https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/extended/component-plus/
recycle-view
要看你代码是怎么写的,100多页列表的数据是不是一把setData的,如果是,就是这个原因导致的