百度智能小程序 隱藏右上角的紅點(diǎn)

2020-09-05 14:10 更新

swan.hideTabBarRedDot

解釋:隱藏 tabBar 某一項(xiàng)的右上角的紅點(diǎn)

方法參數(shù)

Object object

object參數(shù)說明

屬性名類型必填默認(rèn)值說明

index

Number

tabBar 的哪一項(xiàng),從左邊算起

success

Function

接口調(diào)用成功的回調(diào)函數(shù)

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行)

示例 

在開發(fā)者工具中打開


圖片示例



代碼示例

<view class="wrap">
   <button type="primary" bindtap="showTabBarRedDot">
   {{ !hasShownTabBarRedDot ?  '顯示紅點(diǎn)' : '移除紅點(diǎn)'}}
   </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
        })
    }
});

錯(cuò)誤碼

Android

錯(cuò)誤碼說明

1001

執(zhí)行失敗

iOS

錯(cuò)誤碼說明

202

解析失敗,請(qǐng)檢查參數(shù)是否正確

1001

當(dāng)前頁(yè)面不含 tabbar


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)