# 上拉加载

# 介绍

上拉加载采用onReachBottom页面生命周期

这里上拉加载结合分页实现。

# 底部导航"点赞"示例代码

代码地址pages/repos/repos-auth.vue

onReachBottom() {
  // next page
  this.page = ++this.page

  if (this._freshing) return
  this._freshing = true
  if (!this.triggered)
    this.triggered = true
  this.listAuthUserRepos(false, false, res => {
    this.myRepos = this.myRepos.concat(res)
  })
}
1
2
3
4
5
6
7
8
9
10
11
12
Last Updated: 8/26/2020, 11:33:54 PM