微信小程式實現滾動載入更多
阿新 • • 發佈:2018-11-20
微信小程式實現滾動載入更多
1.需要用到的元件和api
scroll-view(可滾動檢視區域)
wx.showToast(OBJECT)顯示訊息提示窗
2.需要用到的屬性
3.scrol-view需要指定一個高度,這個高度可以按自己的需求計算,我使用的是螢幕可用高度並且預設一頁顯示6個
4.滾動到底部繫結需要觸發的事件
<scroll-view scroll-y='true' style="height:{{height}}px" bindscrolltolower='lower'>
5.操作事件函式,主要是將請求下來的資料用concat方法進行合併,然後賦值,我是用的for迴圈假裝新增的資料,實際專案中可以換成自己的ajax,並且為了模擬載入我添加了一個1.5秒的定時器,先呼叫提示框api成功之後關閉
6.成功,放完整程式碼可以直接複製執行
WXML<view class='box'> <scroll-view scroll-y='true' style="height:{{height}}px" bindscrolltolower='lower'> <view wx:for="{{res}}" data-id="{{index}}" wx:key="{{index}}" style="height:{{(height/6)-1}}px;width:100%;text-align:center;line-height:{{(height/6)-1}}px; border-bottom:1px solid #ccc">{{item}}</view> </scroll-view> </view>
JS
Page({ /** * 頁面的初始資料 */ data: { height: '', res: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] }, lower() { var result = this.data.res; var resArr = []; for (let i = 0; i < 10; i++) { resArr.push(i); }; var cont = result.concat(resArr); console.log(resArr.length); if (cont.length >= 100) { wx.showToast({ //如果全部載入完成了也彈一個框 title: '我也是有底線的', icon: 'success', duration: 3000 }); return false; } else { wx.showLoading({ //期間為了顯示效果可以新增一個過度的彈出框提示“載入中” title: '載入中', icon: 'loading', }); setTimeout(() => { this.setData({ res: cont }); wx.hideLoading(); }, 1500) } }, /** * 生命週期函式--監聽頁面載入 */ onLoad: function (options) { wx.getSystemInfo({ success: (res) => { this.setData({ height: res.windowHeight }) } }) } })