• uni.switchTab(OBJECT)

    uni.switchTab(OBJECT)

    跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面。

    OBJECT参数说明

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

    示例

    pages.json

    1. {
    2. "tabBar": {
    3. "list": [{
    4. "pagePath": "pages/index/index",
    5. "text": "首页"
    6. },{
    7. "pagePath": "pages/other/other",
    8. "text": "其他"
    9. }]
    10. }
    11. }

    other.vue

    1. uni.switchTab({
    2. url: '/pages/index/index'
    3. });