TabBar

my.switchTab

跳转到指定 tabBar 页面,并关闭其他所有非 tabBar 页面。扫码体验:

img.jpg

入参

参数类型必填说明
urlString跳转的 tabBar 页面的路径(需在 app.json 的 tabBar 字段定义的页面)。注意:路径后不能带参数
successFunction调用成功的回调函数
failFunction调用失败的回调函数
completeFunction调用结束的回调函数(调用成功、失败都会执行)

代码示例

  1. // app.json
  2. {
  3. "tabBar": {
  4. "items": [{
  5. "pagePath": "page/home/index",
  6. "name": "首页"
  7. },{
  8. "pagePath": "page/user/index",
  9. "name": "用户"
  10. }]
  11. }
  12. }
  1. my.switchTab({
  2. url: 'page/home/index'
  3. })

原文: https://docs.alipay.com/mini/api/ui-tabbar