wx.navigateTo:保留当前页,跳转到指定页,非tabBar;使用 wx.navigateBack 可以返回到当前的页面。
wx.redirectTo:关闭当前页,跳转到指定页,非tabBar;将无法回到当前页面。
wx.switchTap:只能用于跳转到tabbar页面,并关闭其他非tabbar页面。
wx.reLaunch:是关闭所有页面,跳转到指定页,非tabBar的页面。
有时候跳转还需要携带参数,例如:
wx.navigateTo{ url: '/pages/item/item?name=' + name, })
item页的取值的方式
onLoad: function options) { var that = this; that.setData{ name: options.name, }) }