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