uniapp微信小程序内部跳转其他微信小程序

uniapp微信小程序内部跳转其他微信小程序_第1张图片

uniapp小程序内点击某个按钮跳转另外一个小程序连接,具体实现步骤如下:


      
      开源字节

按钮事件

goNativeindex(){
    uni.navigateToMiniProgram({
        appId:'',// 此为 开源字节 appid
        path:'/pages/index/index',// 此为开源字节首页路径
        envVersion:"release",
        success: res => {
             // 打开成功
             console.log("打开成功", res);
        },
        fail: err => {
             console.log(err);
        }
    })
}

需要记住的是,需要填写另外一个小程序的AppID哦!

如若转载,请注明出处:开源字节 https://sourcebyte.vip/article/299.html

你可能感兴趣的:(微信小程序,uni-app,小程序)