• 小程序中跳转页面的几种方式


    小程序中跳转的几种方式

    //1. switchTab
    wx.switchTab({
        url:"/pages/index/index"
    })
    //这个只能跳转到tabBar配置的页面,关闭其他所有的非tab页面
    
    //2. navigateBack
    wx.navigateBack({
        delta:2
    })
    //返回到上一级页面,或者是上几级页面,(delta是返回的页数,如果delta大于了栈中存放的页面数就返回首页,默认值为1)
    
    //3.redirectTo
    wx.redirectTo({
        url:'/pages/index/index'
    })
    //关闭当前页面,并且跳转到app中的某个页面,不能跳转到tabbar页面
    
    //4.navigateTo
    wx.navigateTo({
        url:"/page/index/index"
    })
    //保存当前页面,跳转到APP中某个页面,不能跳转到tabbar页面
    
    //5. reLaunch
    wx.reLaunch({
        url:"/page/index/index"
    })
    //关闭所有的页面,打开app中某个页面
    
  • 相关阅读:
    【编程练习】poj1111
    Android项目开发填坑记-Fragment的onBackPressed
    【编程练习】poj1068
    HTML DOCTYPE文档类型举例说明
    css link import
    css position relative obsolution
    UL/LI
    背离
    stock 当天盘势
    stock 仓位
  • 原文地址:https://www.cnblogs.com/my466879168/p/13559344.html
Copyright © 2020-2023  润新知