uni.navigateTo not jump to page

uni.navigateTo not jump to page


Our other pages jump, we can jump to the page via the following command:

uni.navigateTo({
		url: '/pages/notice/notice'
})

But when we configure this address to tabBar we can not be accessed by the above method, this time we need to access the page using the following method:

uni.switchTab({
       url: '/pages/notice/notice'
})
Published 128 original articles · won praise 72 · Views 1.13 million +

Guess you like

Origin blog.csdn.net/linzhefeng89/article/details/97624393