评论

云开发数据库分页加载,突破20条100条限制

云开发数据库分页加载,突破20条100条限制

云开发数据库,无限制加载

index.js

Page({


  data: {

    list: []

  },


  getDataList() {

    let len = this.data.list.length

    console.log('list长度', len)

    wx.cloud.database().collection('sales') //注意数据库名称

    .skip(len)

    .get()

    .then(res => {

      console.log('请求成功', res)

      this.setData({

        list: this.data.list.concat(res.data)

      })

    })

    .catch(res => {

      console.log('请求失败',res)

    })

  },


  onLoad(options) {

    this.getDataList()

  },


  onReachBottom() {

    console.log('加载更多...')

    this.getDataList()

  },


})

index.wxml

<view class="listwx:for="{{list}}" wx:key="index">

{{item.city}}

</view>

index.wxss

.list{

  margin: 10px;

}


最后一次编辑于  2022-07-11  
点赞 1
收藏
评论

1 个评论

  • ઇ半梦半醒ଓ
    ઇ半梦半醒ଓ
    2022-07-11

    云开发数据库分页加载,突破20条100条限制

    2022-07-11
    赞同 1
    回复
登录 后发表内容