微信小程序切换下一个页面的方法:
wxml页面组件跳转,可以通过设置open-type属性指明页面跳转,代码:
// navigator 组件默认的 open-type 为 navigate
跳转到新页面 // redirect 对应 API 中的 wx.redirect 方法
在当前页打开 // switchTab 对应 API 中的 wx.switchTab 方法
切换 Tab // reLanch 对应 API 中的 wx.reLanch 方法
关闭所有页面,打开到应用内的某个页面 // navigateBack 对应 API 中的 wx.navigateBack 方法
关闭当前页面,返回上一级页面或多级页面