自学内容网 自学内容网

微信小程序跳转其他小程序以及跳转网站

一、跳转其他小程序

1.1 知道appid和页面路径

    wx.navigateToMiniProgram({
      appId: appid, // 替换为目标小程序 AppID
      path: pathWithParams, // 小程序路径
      envVersion: 'release', // 开发版、体验版或正式版
      success(res) {
        console.log("跳转到其他小程序成功!", res);
      },
      fail(err) {
        console.error("跳转到其他小程序失败!", err);
      }
    });

1.2 不知道小程序appid和路径

小程序右上角三个点找到复制链接

wx.navigateToMiniProgram({
  shortLink: '#小程序://1234556/555555',
  envVersion: 'release',
  success(res) {
    console.log("跳转小程序成功!", res);
  },
  fail(err) {
    console.log("跳转失败!", err);
  }
});

shortLink里面直接写复制的链接即可

二、跳转网站

2.1 跳转网站格式

示例:百度一下,你就知道

2.2 小程序后台配置

  1. 开发管理-->业务域名

  2. 添加跳转得网站网址,下载校验文件后上传到目标官网的根目录返回小程序后台并点击 验证,验证通过后即可跳转

 


原文地址:https://blog.csdn.net/apple_70049717/article/details/144379459

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!