微信7.0.7版本起,当用户打开的小程序最底层页面是非首页时,默认展示“返回首页”按钮,开发者可在页面 onShow 中调用 hideHomeButton 进行隐藏。
wx.hideHomeButton()
需要注意
基础库 2.8.3 开始支持,低版本需做兼容处理
if (wx.canIUse('hideHomeButton')) {
wx.hideHomeButton()
}
微信7.0.7版本起,当用户打开的小程序最底层页面是非首页时,默认展示“返回首页”按钮,开发者可在页面 onShow 中调用 hideHomeButton 进行隐藏。
wx.hideHomeButton()
基础库 2.8.3 开始支持,低版本需做兼容处理
if (wx.canIUse('hideHomeButton')) {
wx.hideHomeButton()
}