背景
一直以來進行了比較多的微信小程式開發... 總會接觸到一些和官方元件或api
相關或其無法解決的需求,於是決定在這裡小小的整理一下自己的實現(次序不分先後)
自定義元件的使用
-
建立 右鍵新建
Component
-
引用 在你需要引用的檔案的
json
中定義
"註釋": "前面為元件名,後面為路徑,這裡僅供參考"
{
"usingComponents": {
"Menu": "../Components/Menu/Menu",
"Loading": "../Components/Loading/Loading"
}
}
複製程式碼
- 傳入屬性
在元件的js
中定義你需要的屬性名,型別及預設值
properties: {
theme: {
type: String,
value: 'gray'
}
...
},
複製程式碼
注意
properties
為父元件要傳入的資料,元件自身狀態還是在data
中
然後在wxml
中引用即可
<Menu theme="{{theme}}"></Menu>
複製程式碼
一鍵換膚
先建立一個color.wxss
來存你的皮膚樣式(檔名和位置隨意)
/* 黑色主題 */
.bg-black{
background-color: #363636;
}
.col-black-title{
color: #ffffff;
}
.col-black-name{
color: #c3c3c3;
}
複製程式碼
class
名中必須帶一個標誌
來區分不同主題,推薦使用顏色的英文名..然後在app.wxss
中引用
// ~ 為你的檔案路徑
@import '~/color.wxss';
複製程式碼
之後在app.js
的globalData
中定義一個欄位儲存你當前主題
globalData: {
themeArr: ['gray', 'black', 'green', 'orange', 'pink', 'blue'],
theme: 'black' // gray, black, green, orange, pink, blue
}
複製程式碼
然後在js裡引用app.js
,然後在onLoad
裡獲取theme
後setData
即可,這裡貼上程式碼
<Menu theme="{{theme}}"></Menu>
<block wx:for="{{themeArr}}" wx:key="{{index}}">
<view
class="theme-view-item bg-{{item}} select-{{item == theme}}"
bindtap='changeTheme'
data-theme="{{item}}"
></view>
</block>
複製程式碼
.theme-view-item{
width: 80rpx;
height: 40rpx;
margin: 20rpx;
border-radius: 10rpx;
}
.select-true{
transform: scale(1.2,1.2);
}
複製程式碼
var app = getApp()
Page({
data: {
theme: '',
themeArr: app.globalData.themeArr
},
onLoad: function (options) {
this.setData({
theme: app.globalData.theme
})
},
changeTheme(e){
var theme = e.currentTarget.dataset.theme
app.globalData.theme = theme
this.setData({
theme: theme
})
}
})
複製程式碼
來個效果圖
這裡你也可以使用
storage
來儲存theme
載入更多
使用scroll-view
<scroll-view
scroll-y
bindscrolltolower='toLow'
style="height: {{height}}px"
>
複製程式碼
scroll-y
允許縱向滾動,bindscrolltolower
定義了滾動到底部時應該執行的函式,style
中使用了js
中獲取的螢幕可用高度
使用
scroll-y
需要指定scroll
的高度
onLoad: function (options) {
wx.getSystemInfo({
success: (res) => {
this.setData({
height: res.windowHeight
})
}
})
},
toLow(){
this.setData({
isLoading: true
})
},
複製程式碼
然後在scroll
下面放你的loading
元件就可以了..
<scroll-view
scroll-y
bindscrolltolower='toLow'
style="height: {{height}}px"
>
......
<view hidden="{{!isLoading}}">
<Loading></Loading>
</view>
</scroll-view>
複製程式碼
下拉重新整理
這個功能用到的都是官方的api
,先在app.json
中定義允許下拉重新整理
"window": {
......
"enablePullDownRefresh": true
}
複製程式碼
然後在你的js
檔案中定義相應的函式
onPullDownRefresh: function () {
......
wx.stopPullDownRefresh()
},
複製程式碼
這個點可以看官方文件
自適應
rpx
單位是微信小程式中css
的尺寸單位,rpx
可以根據螢幕寬度進行自適應,如在 iPhone6
上,螢幕寬度為375px
,共有750
個物理畫素,則750rpx
= 375px
= 750
物理畫素,1rpx
= 0.5px
= 1
物理畫素
如果不懂的話不用考慮太多,在用
px
的時候將其大小翻倍使用rpx
即可
阻止事件冒泡
假設有如下結構
<view class='A' bindtap='funcA'>
<view class='B' bindtap='funcB'></view>
</view>
複製程式碼
我們在A
,B
上定義了兩個獨立的點選事件,懂得事件冒泡的童鞋會發現,如果點選B
的話,不僅會執行funcB
還會執行funcA
,那麼如何避免這個問題?
很簡單,只需要將不需要冒泡的的繫結函式改成catchtap
<view class='A' bindtap='funcA'>
<view class='B' catchtap='funcB'></view>
</view>
複製程式碼
如何去掉Button的預設邊框
微信小程式裡button
的邊框其實是寫在after
裡的,可以在after
中進行更改
button::after{
border: none;
}
複製程式碼
或者更改button
的position
讓其不為relative
button{
position: static;
}
複製程式碼
小程式登入接入流程
一張圖