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({}) }) },
小程序触底增加列表内容100多次触底后页面不渲染展示?小程序渲染列表,连续多次下拉触底时向集合内添加数据,触底加载100多次后集合内容持续增加,但页面不渲染展示添加进集合的内容。
2022-05-23