微信小程序里的触底加载实现流程

触底加载

index.wxml

 <view class="wrap" wx:for="{{singerList}}" wx:key="index">
    <view wx:key="{{item.id}}" class="list">
        <view class="name">{{item.name}}</view>
        <image class="img" src="{{item.pic70}}" alt=""></image>
    </view>
  </view>

index.js

// 获取应用实例
const app = getApp()
Page({
data:{
  singerList:[],
  page:1
},
// 请求数据
getData(page){
  wx.request({
    url: 'http://www.kuwo.cn/api/www/artist/artistInfo?category=11&rn=10&httpsStatus&pn='+this.data.page+'&=1&reqId=4c428f30-a65a-11eb-9202-3bf9c9f0d08d',
    header:{
      "csrf": "RJQ1YJ7APA",
      "Cookie":"kw_token=RJQ1YJ7APA"
    },
    success:res=>{ 
         this.setData({
          singerList:[...this.data.singerList,...res.data.data.artistList],
        })
    }
  })
},
// 监听页面加载
onLoad:function(options){
this.getData()
},
onReachBottom:function(){
  // 页数触底加1
this.setData({
  page:this.data.page+1
})
  this.getData()
}
})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值