百度智能小程序 顯示tabBar

2020-09-05 14:10 更新

swan.showTabBar

解釋:顯示 tabBar 。

方法參數(shù)

Object object

object 參數(shù)說明

屬性名類型必填默認值說明

animation

Boolean

是否需要動畫效果

success

Function

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

fail

Function

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

complete

Function

接口調用結束的回調函數(shù)(調用成功、失敗都會執(zhí)行)

示例



圖片示例



代碼示例 1 

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

<view class="wrap">
    <button type="primary" bindtap="hideTabBar">
    {{ !hasHiddenTabBar ? '隱藏TabBar' : '顯示TabBar' }}
    </button>
</view>
Page({
    showTabBar() {
        this.setData({hasHiddenTabBar: false});
        swan.showTabBar({
            animation: true, // animation 為 true 時,建議在真機上看效果,工具暫不支持
            success: res => {
                console.log('showTabBar success');
            },
            fail: err => {
                console.log('showTabBar fail', err);
            }
        })
    },

    hideTabBar() {
        if (this.data.hasHiddenTabBar) {
            this.showTabBar();
            return
        }
        this.setData({hasHiddenTabBar: true})
        swan.hideTabBar();
    }
});

錯誤碼

Android

錯誤碼說明

1001

執(zhí)行失敗

iOS

錯誤碼說明

1001

當前頁面不含 tabbar


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號