這篇文章給大家分享的是有關(guān)微信小程序加載更多和點擊查看更多的實現(xiàn)方法的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站專業(yè)提供遂寧聯(lián)通機房服務,為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購買遂寧聯(lián)通機房服務,并享受7*24小時金牌售后服務。
具體內(nèi)容如下
微信小程序加載更多,是將之前的數(shù)據(jù)和點擊加載后請求的數(shù)據(jù)用concat拼接在一起并執(zhí)行setData,下面是一個簡單的栗子:
index.wxml代碼如下
{{name.content}}
加載更多按鈕綁定setLoading
index.js文件代碼如下
Page({ data: { loadText:'加載更多', duanziInfo:[] }, //初始化請求 onLoad: function (res) { var that = this //內(nèi)容 wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(res.data.result) //打印初始化數(shù)據(jù) that.setData({ duanziInfo:res.data.result }) } }) }, //加載更多 setLoading: function(e) { var duanziInfoBefore = this.data.duanziInfo var that = this wx.showToast({ //期間為了顯示效果可以添加一個過度的彈出框提示“加載中” title: '加載中', icon: 'loading', duration: 200 }) wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(duanziInfoBefore.concat(res.data.result)) //打印拼接之后數(shù)據(jù) that.setData({ loadText:"數(shù)據(jù)請求中", loading:true, duanziInfo:duanziInfoBefore.concat(res.data.result), loadText:"加載更多", loading:false, }) } }) } })
初始化和加載更多中的打印數(shù)據(jù)如下
(以上是點擊查看更多,還可以根據(jù)距離視圖區(qū)域的距離來加載更多,具體實現(xiàn)是將視圖用
感謝各位的閱讀!關(guān)于“微信小程序加載更多和點擊查看更多的實現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!