91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序怎么實現列表分頁功能

發布時間:2022-08-24 15:41:19 來源:億速云 閱讀:417 作者:iii 欄目:開發技術

這篇“微信小程序怎么實現列表分頁功能”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“微信小程序怎么實現列表分頁功能”文章吧。

概述

主要實現功能:

1.列表展示
2.上下頁點擊

效果圖:

微信小程序怎么實現列表分頁功能

知識點:wx:for、bindtap、生命周期函數–監聽頁面加載、.filter、取余( % )取整(parseInt(x/y) )函數

js

data: {
    frontPage: false,//上一頁 存在true,不存在false
    nextPage: false,//下一頁 存在true,不存在false
    pages: 0,//所有頁
    thisPages: 0,//當前頁
    rows: 6,//每頁條數
    total: 0,//總條數
    pageData: [],//本頁顯示的列表數據
    prizeListItem:[
      {name: "張三", pic: "../../images/1.png", gift:"小蛋糕"}, 
      {name: "李四", pic: "../../images/2.png", gift:"冰淇淋"}, 
      {name: "陳工", pic: "../../images/3.png", gift:"按摩椅"}, 
      {name: "孫悟空", pic: "../../images/3.png", gift:"桃子"}, 
      {name: "豬八戒", pic: "../../images/2.png", gift:"紅燒肉"}, 
      {name: "薩赫尚", pic: "../../images/1.png", gift:"新衣服"}, 
      {name: "程序員", pic: "../../images/2.png", gift:"電腦"}, 
      {name: "甄姬", pic: "../../images/3.png", gift:"口紅"},
      {name: "孫悟空", pic: "../../images/3.png", gift:"桃子"}, 
      {name: "豬八戒", pic: "../../images/2.png", gift:"紅燒肉"}, 
      {name: "薩赫尚", pic: "../../images/1.png", gift:"新衣服"}, 
      {name: "程序員", pic: "../../images/1.png", gift:"電腦"}, 
      {name: "甄姬", pic: "../../images/2.png", gift:"口紅"}
    ],
    myPrize: false,
    tab1: '',
    tab2: 'selected',
  },
/**
   * 生命周期函數--監聽頁面加載
   */
  onLoad: function () {
    this.setList();
  },
  // 初始化列表分頁
  setList() {
    let that = this;
    let thisPages = that.data.thisPages;
    let rows = that.data.rows;
    let prizeListItem = that.data.prizeListItem;
    let pageData = that.data.pageData;
    let pages = that.data.pages;
    if (pageData !== []){
      pageData = prizeListItem.filter(function (item, index, prizeListItem) {
        //元素值,元素的索引,原數組。
        return index >= rows*thisPages && index <= rows*(thisPages+1)-1;  //初始為0,0 < index < 6-1
      });
      let x = 0;
      let y = prizeListItem.length;
      if ( y%rows !== 0){
        x = 1
      };
      pages = parseInt(y/rows) + x; //所有頁
      thisPages = thisPages +1; //當前頁
      if ( pages > 1){
        that.setData({
          nextPage: true,
        })
      }
      that.setData({
        thisPages: thisPages,
        pageData: pageData,
        pages: pages,
        rows: rows,
      })
    }
  },
//點擊下一頁
  clickNext() {
    let that = this;
    let thisPages = that.data.thisPages;
    let prizeListItem = that.data.prizeListItem;
    let pageData = that.data.pageData;
    let pages = that.data.pages;
    let rows = that.data.rows;
    pageData = prizeListItem.filter(function (item, index, prizeListItem) {
      //元素值,元素的索引,原數組。
      return index >= rows*thisPages && index <= rows*(thisPages+1)-1;  
    });
    thisPages = thisPages + 1;
    if ( pages === thisPages){
      that.setData({
        nextPage: false,
      })
    }
    that.setData({
      thisPages: thisPages,
      pageData: pageData,
      frontPage: true,
    })
  },
//點擊上一頁
  clickFront() {
    let that = this;
    let thisPages = that.data.thisPages;
    let prizeListItem = that.data.prizeListItem;
    let pageData = that.data.pageData;
    let rows = that.data.rows;
    pageData = prizeListItem.filter(function (item, index, prizeListItem) {
      //元素值,元素的索引,原數組。
      return index >= rows*(thisPages-2) && index <= rows*(thisPages-1)-1;  
    });
    thisPages = thisPages - 1;
    if ( thisPages === 1){
      that.setData({
        frontPage: false,
      })
    }
    that.setData({
      thisPages: thisPages,
      pageData: pageData,
      nextPage: true,
    })
  },

wxml

<view class="prizelist">
      <view class="info_con">
        <view class="list" wx:for="{{pageData}}">
          <image class="list_bg" src="../../images/wi_listbg.png"></image>
          <view class="list_head">
            <image class="list_headpic" src="{{item.pic}}"></image>
            <view class="list_name">{{item.name}}</view>
          </view>
          <view class="list_prize">{{item.gift}}</view>
        </view>
      </view>   
      <view class="paging">
        <view class="page_btn">
          <view wx:if="{{frontPage}}" bindtap="clickFront">上一頁</view>
        </view>
        <view class="page_num">第{{thisPages}}頁 共{{pages}}頁</view>
        <view class="page_btn">
          <view wx:if="{{nextPage}}" bindtap="clickNext">下一頁</view>
        </view>
      </view>
    </view>

wxss

【外框

.con .prizelist{
  width: 100%;
  height: max-content;
  margin-top: 38rpx;
}
.con .prizelist .info_con{
  width: 639rpx;
  height: 787rpx;
  display: inline-block;
}

【list的樣式

.con .prizelist .info_con .list{
  width: 639rpx;
  height: 108rpx;
  position: relative;
  margin: 20rpx 0;
}
.list .wi_prize{
  width: 186rpx;
  height: 69rpx;
  margin: 20rpx 0 0 60rpx;
}
.list .prizeinfo{
  width: 350rpx;
  height: 108rpx;
  float: right;
}
.list .prizeinfo .prize_name{
  font-size: 28rpx;
  color: #87562e;
  line-height: 42rpx;
  margin-top: 20rpx;
}
.list .prizeinfo .prize_state{
  font-size: 20rpx;
  color: #ff2d2d;
  line-height: 25rpx;
}
.list .list_bg{
  width: 639rpx;
  height: 108rpx;
  position: absolute;
  left: 56rpx;
  z-index: -1;
}
.list .list_head{
  height: 100%;
  width: max-content;
  margin-left: 100rpx;
  float: left;
}
.list .list_head .list_headpic{
  border-radius: 50%;
  background-color: rgb(43, 93, 216);
  width: 46rpx;
  height: 46rpx;
  margin: 31rpx 0rpx;
  float: left;
}
.list .list_head .list_name{
  color: #000;
  line-height: 108rpx;
  font-size: 28rpx;
  float: left;
  margin-left: 31rpx;
}
.list .list_prize{
  height: 100%;
  line-height: 108rpx;
  font-size: 28rpx;
  color: #87562e;
  float: right;
}

【上下頁樣式

.con .prizelist .paging{
  width: 580rpx;
  height: 108rpx;
  margin: 30rpx auto;
}
.con .prizelist .paging .page_btn{
  width: 96rpx;
  height: 32rpx;
  font-size: 32rpx;
  font-family: "PingFangSC";
  color: #ffffff;
  line-height: 36rpx;
  float: left;
  margin: auto 23rpx;
}
.con .prizelist .page_num{
  font-size: 24rpx;
  font-family: "PingFangSC";
  color: #ffffff;
  line-height: 36rpx;
  float: left;
  margin: auto 75rpx;
}

結語

有一個可有可無的警告:

Now you can provide attr wx:key for a wx:for to improve performance.

解決辦法:添加wx:key屬性,

①使用循環的 array 中 item 的某個property,比如 wx:key=“item.id”
此時數組的格式應為:

 {id: "1", name: "張三", pic: "../../images/1.png", gift:"小蛋糕"},

②使用數組的下標,即 wx:key=“index”

③ wx:key="*this" 我沒太看懂,是

官方文檔說的有一個經歷過的低級錯誤:
錯誤:

onLoad: function () {
    setList();
  },

改正:

onLoad: function () {
    this.setList();
  },

后續

1.被指出 “第 X 頁 共 X 頁”的margin固定,當頁數增加到雙位數后,下一頁被擠到下一行了。
方法1(同事腦力成果,擔待了):修改class為page_name的margin為百分比。

.con .prizelist .page_num{
  margin: auto 75rpx;
}

改為:

.con .prizelist .page_num{
  margin: auto 10%;
}

方法2(我自己的老辦法):給“上一頁”“共 頁”“下一個”分別定義class:

<view class="paging">
        <view class="up_page" bindtap="up_page" >{{current_page > 1 ? '上一頁' : ''}}</view>
        <view class="down_page" bindtap="next_page">{{current_page < last_page ? '下一頁' : ''}}</view>
        <view class="page_num">第{{current_page}}頁 共{{last_page}}頁</view>
</view>

樣式:

.con .prizelist .paging{
  width: 100%;
  height: 108rpx;
  font-size: 32rpx;
  font-family: "PingFangSC";
  color: #ffffff;
  line-height: 36rpx;
  text-align: center;
}
.con .prizelist .paging .up_page{
  width: 96rpx;
  height: 32rpx;
  float: left;
  margin-left: 72rpx;
}
.con .prizelist .paging .down_page{
  width: 96rpx;
  height: 32rpx;
  float: right;
  margin-right: 72rpx;
}
.con .prizelist .page_num{
  width: 500rpx;
  font-size: 24rpx;
  font-family: "PingFangSC";
  color: #ffffff;
  line-height: 36rpx;
  margin: auto;
}

以上就是關于“微信小程序怎么實現列表分頁功能”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

星座| 德保县| 明水县| 岗巴县| 林西县| 木兰县| 城固县| 沅陵县| 河曲县| 天全县| 五莲县| 大荔县| 青州市| 汨罗市| 承德县| 普陀区| 惠州市| 武隆县| 永靖县| 沁水县| 洪泽县| 睢宁县| 登封市| 五莲县| 永州市| 耒阳市| 六安市| 饶河县| 基隆市| 琼结县| 治县。| 阿拉善左旗| 察隅县| 台州市| 尼玛县| 三门峡市| 太谷县| 鄯善县| 乳山市| 屏东县| 尤溪县|