根据各种踩坑发现有以下几种原因:
1.pages的app.json没写跳转页面
2.js跳转链接写了.wxml
3.不能写相对路径要写绝对路径:/pages/xxx/xxx
4.最最最恶心的一点:tabBar里的页面不支持跳转!如果页面路径已经写进了tabBar的list里,就不能再用navigato跳转了。
tips:如果需要跳转tabBar页面的话需要加入参数:
<url="/pages/xxx/xxx" open-type='switchTab' >
根据各种踩坑发现有以下几种原因:
1.pages的app.json没写跳转页面
2.js跳转链接写了.wxml
3.不能写相对路径要写绝对路径:/pages/xxx/xxx
4.最最最恶心的一点:tabBar里的页面不支持跳转!如果页面路径已经写进了tabBar的list里,就不能再用navigato跳转了。
tips:如果需要跳转tabBar页面的话需要加入参数:
<url="/pages/xxx/xxx" open-type='switchTab' >