溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

微信小程序加載更多和點(diǎn)擊查看更多的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2020-12-31 11:01:19 來(lái)源:億速云 閱讀:947 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

這篇文章給大家分享的是有關(guān)微信小程序加載更多和點(diǎn)擊查看更多的實(shí)現(xiàn)方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

具體內(nèi)容如下

微信小程序加載更多,是將之前的數(shù)據(jù)和點(diǎn)擊加載后請(qǐng)求的數(shù)據(jù)用concat拼接在一起并執(zhí)行setData,下面是一個(gè)簡(jiǎn)單的栗子:

index.wxml代碼如下

<view wx:for="{{duanziInfo}}" wx:for-item="name" wx:for-index="id"> 
 <view class="duanzi-view"> 
 <view class="duanzi-content"> 
 <text class="dz-content">{{name.content}}</text> 
 </view> 
 </view> 
</view> 
<view class="button-wrapper"> 
 <button type="default" size="default" loading="{{loading}}" disabled="{{disabled}}" bindtap="setLoading"> 
 {{loadText}} 
 </button> 
</view>

加載更多按鈕綁定setLoading

index.js文件代碼如下

Page({ 
 data: { 
  loadText:'加載更多', 
  duanziInfo:[] 
 }, 
 //初始化請(qǐng)求 
 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({ //期間為了顯示效果可以添加一個(gè)過(guò)度的彈出框提示“加載中” 
  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ù)請(qǐng)求中", 
  loading:true, 
  duanziInfo:duanziInfoBefore.concat(res.data.result), 
  loadText:"加載更多", 
  loading:false, 
  }) 
  } 
 }) 
 } 
})

初始化和加載更多中的打印數(shù)據(jù)如下

微信小程序加載更多和點(diǎn)擊查看更多的實(shí)現(xiàn)方法

(以上是點(diǎn)擊查看更多,還可以根據(jù)距離視圖區(qū)域的距離來(lái)加載更多,具體實(shí)現(xiàn)是將視圖用<scroll-view>標(biāo)簽,并給其一個(gè)固定高度,在給定參數(shù)中設(shè)置距離像素觸發(fā)事件。具體文檔:https://mp.weixin.qq.com/debug/wxadoc/dev/component/scroll-view.html?t=20161122)

感謝各位的閱讀!關(guān)于“微信小程序加載更多和點(diǎn)擊查看更多的實(shí)現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI