W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
解釋:顯示 tabBar 某一項的右上角的紅點,可以使用底部標簽欄紅點(TabBarRedDot)進行提示,告知用戶對應的標簽頁中有內容更新。
Object object
屬性名 | 類型 | 必填 | 默認值 | 說明 |
---|---|---|---|---|
index | Number | 是 | tabBar 的哪一項,從左邊算起 | |
success | Function | 否 | 接口調用成功的回調函數 | |
fail | Function | 否 | 接口調用失敗的回調函數 | |
complete | Function | 否 | 接口調用結束的回調函數(調用成功、失敗都會執(zhí)行) |
<view class="wrap">
<button type="primary" bindtap="showTabBarRedDot">
{{ !hasShownTabBarRedDot ? '顯示紅點' : '移除紅點'}}
</button>
</view>
Page({
showTabBarRedDot() {
if (this.data.hasShownTabBarRedDot) {
this.hideTabBarRedDot()
return
}
this.setData({
hasShownTabBarRedDot: true
})
swan.showTabBarRedDot({
index: 1
})
},
hideTabBarRedDot() {
this.setData({
hasShownTabBarRedDot: false
})
swan.hideTabBarRedDot({
index: 1
})
}
});
錯誤碼 | 說明 |
---|---|
1001 | 執(zhí)行失敗 |
錯誤碼 | 說明 |
---|---|
202 | 解析失敗,請檢查參數是否正確。 |
1001 | 當前頁面不含 tabbar |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯系方式:
更多建議: