uni.navigateTo 用于页面跳转
如:
<navigator url="/pages/index/index" hover-class="navigator-hover"> <button type="default">跳转</button> </navigator>
但是跳转页面失败,没有任何反应
问题原因:
url指定的页面,在pages.json中配置的是TabBar里的页面
解决办法:
<navigator url="/pages/index/index" open-type="switchTab" hover-class="navigator-hover"> <button type="default">跳转到首页</button> </navigator>
标签:uniapp,json,失败,跳转,navigator,页面 From: https://www.cnblogs.com/baby123/p/17491229.html