当前位置: 首页 > 工具软件 > ELaunch > 使用案例 >

uniapp - 在 onLaunch 中使用 redirectTo 或r eLaunch 重定向跳转页面后点击事件失效(uniapp编译成小程序时会出现)

殳勇
2023-12-01

问题描述

在原生微信小程序中重定向没有问题,仅出现在 uniapp 编译成小程序时出现。

使用 uniapp 编译成小程序时,在 onLaunch 中重定向会导致点击事件失效,

但是,如果你重定向的页面中有使用 navigator 组件跳转后再返回,点击事件又有效了。


如下代码所示,就会导致重定向失效:

onLaunch() {
   
    uni.reLaunch({
   
        url: '/pages/user/user'
    })
}
 类似资料: