赞
踩
一、页面跳转
(1)navigator 组件
(2)路由 API
wx.navigateTo({ url: '/pages/game/index?level=1' })
wx.redirectTo ({ url: '/pages/game/index?level=1' })
// app.json { "tabBar": { "list": [{ "pagePath": "pages/home/index", "text": "首页" },{ "pagePath": "other", "text": "其他" }] } } wx.switchTab({ url: '/pages/home/index' })
wx.reLaunch({
url: '/pages/home/index'
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。