小程序-导航跳转重定向跳转底部导航跳转
Posted 亮子zl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序-导航跳转重定向跳转底部导航跳转相关的知识,希望对你有一定的参考价值。
a.wxml
<button type="primary" bindtap="navigateTo">navigateTo</button>//导航跳转
<button type="primary" bindtap="redirecTo">redirecTo</button>//重定向跳转
<button type="primary" bindtap="switchTabTo">switchTabTo</button>//底部导航跳转
a.ts
//导航跳转
navigateTo:function()
wx.navigateTo(
url:'../bb/bb?title=helloworld',
success:function(res)
console.log(res)
,
fail:function(),
complete:function()
)
,
//重定向跳转
redirecTo:function()
wx.redirectTo(
url:'../bb/bb?title=helloworld',
success:function(res)
console.log(res)
,
fail:function(),
complete:function()
)
,
//底部导航跳转
switchTabTo:function()
wx.switchTab(
url:'../cc/cc',
success:function(res)
console.log(res)
,
fail:function()
,
complete:function()
)
,
以上是关于小程序-导航跳转重定向跳转底部导航跳转的主要内容,如果未能解决你的问题,请参考以下文章