日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本篇文章給大家總結下之前開發微信小程序的時候遇到過一些問題,并將解決方案分享給大家,希望對大家有所幫助!


總結分享一些小程序開發中遇到的問題(幫忙避坑)

請以小程序最新文檔為準~:

https://developers.weixin.qq.com/ebook?action=get_post_info&docid=0008aeea9a8978ab0086a685851c0a&highline=webview

渲染列表時用 block 包裹

<block wx:for="{{[1, 2, 3]}}">
  <view> {{index}}: </view>
  <view> {{item}} </view>
</block>

block 不會真實渲染到頁面上,只作為一個包裹元素,接受控制屬性


寫一個自定義組件

自定義組件分為 4 部分

properties 組件接收的屬性

data 組件數據

methods 組件方法,一般內部方法用_開頭

組件的生命周期函數,一般使用 ready,在組件布局完成后執行,此時可以獲取節點信息(使用 SelectorQuery )

調用父組件傳入的方法

// 子組件
var myEventDetail = {value: ''}; // detail對象,提供給事件監聽函數,寫需要傳給外面的數據
var myEventOption = {} // 觸發事件的選項
this.triggerEvent('onclear', myEventDetail, myEventOption)
<!-- 父組件 -->
<searchbar id="search-bar" bind:onsearch="onSearch" bind:onclear="onSearch" placeholder="搜索文章內容"></searchbar>
<!-- 像綁定 bindtap 一樣綁定自定義函數 -->
// 父組件
onSearch(e){
  console.log(e.detail.value)
}

父組件直接調用子組件的方法

// 父組件,使用 selectComponent 拿到子組件的實例,直接調用其中的方法
let searchBar = this.selectComponent('#search-bar');
searchBar.setData({ value: e.currentTarget.dataset.name })
searchBar.onClickSearch({ detail: {value: e.currentTarget.dataset.name}});

子組件中獲取 dom 寬高

// 獲取屏幕寬度
let windowWidth = wx.getSystemInfoSync().windowWidth
// 在組件內部需要寫 this
let query = wx.createSelectorQuery().in(this);
let that = this;
query.selectAll('.tagItem').boundingClientRect()
query.exec(function (res) {
    let allWidth = 0;
    res[0].map(item=>{
        allWidth = allWidth + item.width
        return allWidth
    })
    let length = res[0].length
    let ratioWidth = allWidth / windowWidth
    that.setData({
        allLength: length,
        iphone: ratioWidth + (length == 1 ? 0 : res[0].length * 0.0533)
    })
})

頁面返回時不會調用 onLoad

之前把調用接口的部分寫到了onLoad里,從文章列表進入詳情頁,在從詳情頁點擊左上角回退返回列表頁,列表頁的閱讀數應該更新,但是沒有更新,因為沒有重新調文章列表接口。

所以把調文章列表接口的部分寫好了onShow里。

自定義 tabbar 優化

第一次優化,將組件封裝的tabbar改成頁面的模版形式

1、之前用組件的形式寫的,改為了 template;tabbar 上的圖標都改成的 iconfont,解決點擊 tabbar 時候會閃的問題

<template name="tabbar">
    <view class="tabbar-wrapper">
        <block wx:for="{{tabbar.list}}" wx:key="item">
            <navigator hover-class="none" class="tabbar_nav {{item.selected ?'selected':''}}"  url="{{item.pagePath}}" style="color:{{item.selected ? tabbar.selectedColor : tabbar.color}}" open-type="reLaunch">
                <view class="tab-item"><text  class="{{item.iconPath}}" style="width: {{item.iconWidth}};height: {{item.iconHeight}}"></text>{{item.text}}<text class='red-tag' wx:if="{{tabbar.num && index==1}}">{{tabbar.num > 99 ? '99+' : tabbar.num}}</text></view>
            </navigator>
        </block>
    </view>
</template>

2、點擊 tabbar 時,需要銷毀之前的頁面,在跳到需要跳轉的頁面,所以在 navigator 組件用了 reLaunch

第二次優化,將帶有tabbar的頁面都封裝成組件寫在頁面,在頁面中setData切換tab

<homePage id="home-page" wx:if="{{tabbarID == tabbarList.home}}"  bind:onclicktab="setTabbar"  ></homePage>
<articleLibraryPage  id="article-page" wx:if="{{tabbarID == tabbarList.article}}"></articleLibraryPage>
<doclistPage  id="doctor-page" wx:if="{{tabbarID == tabbarList.doctor}}"></doclistPage>
<mePage id="me-page" wx:if="{{tabbarID == tabbarList.me}}"></mePage>
<tabbar id="tab-bar" bind:onclick="onClickTabbar"  tabbarID="{{tabbarID}}"></tabbar>

修改的地方:

帶有tabbar的頁面都重寫為組件形式

因為組件中只有掛載完成后的 ready 方法,所以之前頁面中 onShow,onReachBottom,onPullDownRefresh 都放到父頁面調用

onPullDownRefresh: function () {
    if (this.data.tabbarID === this.data.tabbarList.article) {
      // 使用 selectComponent 找到組件實例,調用內部方法
      let articlePage = this.selectComponent('#article-page');
      articlePage.onPullDownRefresh();
    } else if (this.data.tabbarID === this.data.tabbarList.doctor){
      let doctorPage = this.selectComponent('#doctor-page');
      doctorPage.onPullDownRefresh();
    } else {
      wx.stopPullDownRefresh();
    }
},

帶來的問題:

每個tabbar都會有下拉刷新的效果,即使不需要下拉刷新

從其他頁面點擊按鈕,直接跳到首頁的某一個tab卡,可能會有問題

使用 iconfont

登錄 iconfont.cn 下載 zip 包

解壓縮,其中的 .ttf 文件在 transfonter.org 上面轉成 base64 格式

將 style.css 寫入新建的 iconfont.wxss 中,上面的字體文件路徑用剛剛轉好的 base64 替代

在 app.wxss 中 import iconfont.wxss

注意:組件中的樣式本身不受 app.wxss 影響,因此,組件中需要使用 iconfont 的時候,需要手動引一下 app.wxss 或者 iconfont.wxss


列表的左滑效果

1、在列表的父元素上綁定事件

<view 
    class="list-container"
    wx:for="{{doctorList.list}}"
    wx:key="{{index}}"
>
    <view
        bindtouchstart='onTouchStartListItem'
        bindtouchmove='onTouchMoveListItem'
        style="{{item.txtStyle}}"
    >滑動的內容
    </view>
    <view class="backCover">滑動后顯示的按鈕</view>
</view>
.list-container{
    position: relative;
    width:100%;
    height: 224rpx;
    overflow: hidden;
}
.list-item{
    position: absolute;
    left: 0;
    z-index: 5;
    transition: left 0.2s ease-in-out;
    background-color: #fff;
}
.backCover{
    box-sizing: border-box;
    width: 200rpx;
    height: 218rpx;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
}

2、通過判斷滑動距離修改列表項的 left 值

onTouchStartListItem: function (e) {
    // 是單指觸碰
    if (e.touches.length === 1) {
        // 記下觸碰點距屏幕邊緣的x軸位置
        this.setData({
            startX: e.touches[0].clientX,
        })
    }
},
 
onTouchMoveListItem: function (e) {
    var that = this
    if (e.touches.length == 1) {
        var disX = that.data.startX - e.touches[0].clientX;
        var deleteBtnWidth = that.data.deleteBtnWidth;
        var txtStyle = "";
        if (disX < deleteBtnWidth / 4) {
            txtStyle = "left:0rpx";
        } else {
            txtStyle = "left:-" + deleteBtnWidth + "rpx";
        }
        var index = e.currentTarget.id
        var list = that.data.doctorList.list
        list[index].txtStyle = txtStyle;
        that.setData({
            doctorList: {
                list: list,
                total: that.data.doctorList.total
            }
        })
    }
},
 
   
 
onTouchEndListItem: function (e) {
    var that = this
    if (e.changedTouches.length == 1) {
        var endX = e.changedTouches[0].clientX;
        var disX = that.data.startX - endX;
        var deleteBtnWidth = that.data.deleteBtnWidth;
        var txtStyle = disX > deleteBtnWidth / 2 ? "left:-" + deleteBtnWidth + "px" : "left:0px";
        var index = e.currentTarget.id
        var list = that.data.doctorList.list
        list[index].txtStyle = txtStyle;
        that.setData({
            doctorList: {
                list: list,
                total: that.data.doctorList.total
            }
        });
    }
},


分享到:
標簽:小程序開發
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定