微信小程序 之 导航跳转

//跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面
wx.switchTab({
url: '../index/index'

});

//关闭当前页面,跳转其他页面
wx.redirectTo({
url: '../index/index'
})

//保留当前页面,跳转其他页面
wx.navigateTo({
url : '../index/index'
})
//关闭所有页面,跳转其他页面
wx.reLaunch({
url : '../index/index'
});


猜你喜欢

转载自blog.csdn.net/qinlulucsdn/article/details/80279884
今日推荐