微信小程序中實現頁面轉換的幾種方法
1.wx.navigateTo()方法
wx.navigateTo({
url: '跳轉的頁面地址'
})
2.wx.redirectTo()方法
wx.redirectTo({
url: '跳轉的頁面地址'
})
3.wx.switchTab()方法跳轉到tabBar頁面
{
"tabBar": {
"list": [{
"pagePath": "index",
"text": "首頁"
},{
"pagePath": "other",
"text": "其他"
}]
}
}
wx.switchTab({
url: '/index' //跳轉到tabBar首頁
})