当前位置:   article > 正文

H5网页跳转小程序_html跳转小程序

html跳转小程序

现在小程序越来越普遍了,从H5网页(要在微信浏览器下打开的)跳转到相应小程序的场景也越来越多。至此微信提供了相应的微信开放标签让网页开发者可安全便捷地使用微信或系统的能力,为微信用户提供更优质的网页体验。

需要注意的是,微信开放标签有最低的微信版本最低的系统版本要求。

  • 微信版本要求为:7.0.12及以上
  • 系统版本要求为:iOS 10.3及以上、Android 5.0及以上

对于符合微信或系统最低版本要求但仍无法使用微信开放标签的场景,将会在下方使用步骤中的wx.config权限验证成功后触发WeixinOpenTagsError事件告知开发者。仅无法使用微信开发标签,JS-SDK其他功能不受影响。可通过如下方法监听并进行回退兼容:

  1. document.addEventListener('WeixinOpenTagsError', function (e) {
  2. console.error(e.detail.errMsg); // 无法使用开放标签的错误原因,需回退兼容。仅无法使用开放标签,JS-SDK其他功能不受影响
  3. });

根据目前已知的错误场景,回退兼容建议如下:

  1. iOS15底层 WebKit 接口发生变更,微信版本8.0.8以下(不包括8.0.8)无法使用开放标签,可引导用户升级最新版本微信;
  2. 开放标签依赖Web Components方案,极少部分 Android 系统可能由于版本太低而不支持,可引导用户升级系统固件。

H5网页跳转小程序有如下步骤:

1.在微信公众号(已认证的服务号)绑定“JS接口安全域名”

如果是公众号身份的网页,需要绑定安全域名。登录微信公众平台进入“公众号设置”的“功能设置”里填写“JS接口安全域名”。

2.引入JS文件

在需要调用 JS 接口的页面引入如下 JS 文件:http://res.wx.qq.com/open/js/jweixin-1.6.0.js (支持https)

如需进一步提升服务稳定性,当上述资源不可访问时,可改访问:http://res2.wx.qq.com/open/js/jweixin-1.6.0.js (支持https)

注意:js文件必须使用1.6.0版本以上

3.通过config接口注入权限验证配置并申请所需开放标签

与使用 JS-SDK 配置方式相同,所有需要使用开放标签的页面必须先注入配置信息,并通过openTagList字段申请所需要的开放标签,否则将无法使用(同一个 url 仅需调用一次)。开放标签的申请和 JS 接口的申请相互独立,因此是可以同时申请的。

  1. wx.config({
  2. debug: true, // 开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印
  3. appId: '', // 必填,公众号的唯一标识
  4. timestamp: , // 必填,生成签名的时间戳
  5. nonceStr: '', // 必填,生成签名的随机串
  6. signature: '',// 必填,签名
  7. jsApiList: [], // 必填,需要使用的 JS 接口列表
  8. openTagList: [] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app']
  9. });

4.通过ready接口处理成功验证

  1. wx.ready(function () {
  2. // config信息验证后会执行 ready 方法,所有接口调用都必须在 config 接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在 ready 函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在 ready 函数中
  3. });

5.通过error接口处理失败验证

  1. wx.error(function (res) {
  2. // config信息验证失败会执行 error 函数,如签名过期导致验证失败,具体错误信息可以打开 configdebug模式查看,也可以在返回的 res 参数中查看,对于 SPA 可以在这里更新签名
  3. });

使用说明

所使用的标签允许提供插槽,由于插槽中模版的样式是和页面隔离的,因此需要注意在插槽中定义模版的样式。插槽模版及样式均需要通过<script type="text/wxtag-template"></script>或<template></template>进行包裹。另外,对于具名插槽还需要通过slot属性声明插槽名称,下文标签插槽中的 default 插槽为默认插槽,可不声明插槽名称。

对于标签事件,均可通过event.detail获得详细信息。如果无特殊说明,下文标签事件说明中的返回值均指代event.detail中的内容。

另外,需要注意以下几点:

  1. 页面中与布局和定位相关的样式,如position: fixed; top -100;等,尽量不要写在插槽模版的节点中,请声明在标签或其父节点上;
  2. 对于有 CSP 要求的页面,需要添加白名单frame-src https://*.qq.com webcompt:,才能在页面中正常使用开放标签。
开放对象
  1. 已认证的服务号,服务号绑定“JS接口安全域名”下的网页可使用此标签跳转任意合法合规的小程序。
  2. 已认证的非个人主体的小程序,使用小程序云开发的静态网站托管绑定的域名下的网页,可以使用此标签跳转任意合法合规的小程序。

代码

参考:静态网站 H5 跳小程序 | 微信开放文档

目录 | 微信开放文档

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>H5跳转小程序</title>
  8. <!-- weui 样式 -->
  9. <link rel="stylesheet" href="https://res.wx.qq.com/open/libs/weui/2.4.1/weui.min.css">
  10. <!-- 页面样式 start -->
  11. <style>
  12. /* --------START reset.css------- */
  13. * {
  14. margin: 0;
  15. padding: 0;
  16. }
  17. html,
  18. body {
  19. background-color: #fff;
  20. }
  21. a {
  22. text-decoration: none;
  23. }
  24. a,
  25. button,
  26. input,
  27. span,
  28. div {
  29. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  30. }
  31. li {
  32. list-style-type: none;
  33. }
  34. /* --------END reset.css------- */
  35. 
  36. .hidden {
  37. display: none;
  38. }
  39. .full {
  40. position: absolute;
  41. top: 0;
  42. bottom: 0;
  43. left: 0;
  44. right: 0;
  45. }
  46. .public-web-container,
  47. .wechat-web-container,
  48. .wechat-web-container wx-open-launch-weapp,
  49. .desktop-web-container {
  50. display: flex;
  51. flex-direction: column;
  52. align-items: center;
  53. }
  54. .public-web-container p,
  55. .wechat-web-container p,
  56. .desktop-web-container p {
  57. position: absolute;
  58. top: 40%;
  59. }
  60. .public-web-container a {
  61. position: absolute;
  62. bottom: 40%;
  63. }
  64. .wechat-web-container wx-open-launch-weapp {
  65. position: absolute;
  66. bottom: 40%;
  67. left: 0;
  68. right: 0;
  69. }
  70. .wechat-web-container .open-btn {
  71. display: block;
  72. margin: 0 auto;
  73. padding: 8px 24px;
  74. width: 200px;
  75. height: 45px;
  76. border: none;
  77. border-radius: 4px;
  78. background-color: #07c160;
  79. color: #fff;
  80. font-size: 18px;
  81. text-align: center;
  82. }
  83. </style>
  84. <!-- 页面样式 end -->
  85. </head>
  86. <body>
  87. <!-- 页面容器 start -->
  88. <div id="h5OpenMiniprogram">
  89. <!-- <template> -->
  90. <!-- 页面内容 start -->
  91. <div class="page full">
  92. <!-- 移动端微信外部浏览器 -->
  93. <div id="public-web-container" class="hidden">
  94. <p>正在打开“小程序名字”</p>
  95. <a href="javascript:" id="public-web-jump-button" class="weui-btn weui-btn_primary weui-btn_loading"
  96. onclick="openWeapp()">
  97. <span id="public-web-jump-button-loading" class="weui-primary-loading weui-primary-loading_transparent">
  98. <i class="weui-primary-loading__dot"></i>
  99. </span>
  100. 打开小程序
  101. </a>
  102. </div>
  103. <!-- 微信内部浏览器 -->
  104. <div id="wechat-web-container" class="hidden">
  105. <p>点击以下按钮打开“小程序名字”</p>
  106. <!-- username:必填,所需跳转的小程序原始id,即小程序对应的以gh_开头的id;path:非必填,所需跳转的小程序内页面路径及参数-->
  107. <wx-open-launch-weapp id="launch-btn" username="gh_XXX" path="/pages/XXX">
  108. <!-- 第一种 -->
  109. <template>
  110. <style>
  111. .open-btn {
  112. display: block;
  113. margin: 0 auto;
  114. padding: 8px 24px;
  115. width: 200px;
  116. height: 45px;
  117. border: none;
  118. border-radius: 4px;
  119. background-color: #07c160;
  120. color: #fff;
  121. font-size: 18px;
  122. text-align: center;
  123. }
  124. </style>
  125. <button class="open-btn">打开小程序</button>
  126. </template>
  127. <!-- 第二种 -->
  128. <!-- <script type="text/wxtag-template">
  129. <style>
  130. .open-btn {
  131. display: block;
  132. margin: 0 auto;
  133. padding: 8px 24px;
  134. width: 200px;
  135. height: 45px;
  136. border: none;
  137. border-radius: 4px;
  138. background-color: #07c160;
  139. color: #fff;
  140. font-size: 18px;
  141. text-align: center;
  142. }
  143. </style>
  144. <button class="open-btn">打开小程序</button>
  145. </script> -->
  146. </wx-open-launch-weapp>
  147. </div>
  148. <!-- 桌面端 -->
  149. <div id="desktop-web-container" class="hidden">
  150. <p>请在手机打开网页链接</p>
  151. </div>
  152. </div>
  153. <!-- 页面内容 end -->
  154. <!-- </template> -->
  155. </div>
  156. <!-- 页面容器 end -->
  157. <!-- 引入jQuery -->
  158. <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js"></script>
  159. <!-- 调试用的移动端 console -->
  160. <script src="https://cdn.jsdelivr.net/npm/eruda"></script>
  161. <script>
  162. eruda.init();
  163. </script>
  164. <!-- 公众号 JSSDK -->
  165. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  166. <!-- 云开发 Web SDK -->
  167. <script src="https://res.wx.qq.com/open/js/cloudbase/1.1.0/cloud.js"></script>
  168. <script>
  169. function docReady(fn) {
  170. document.addEventListener('WeixinOpenTagsError', function (e) {
  171. console.error(e.detail.errMsg); // 无法使用开放标签的错误原因,需回退兼容。仅无法使用开放标签,JS-SDK其他功能不受影响
  172. });
  173. if (document.readyState === "complete" || document.readyState === "interactive") {
  174. fn();
  175. } else {
  176. document.addEventListener("DOMContentLoaded", fn);
  177. }
  178. }
  179. docReady(async function () {
  180. var ua = navigator.userAgent.toLowerCase();
  181. var isWXWork = ua.match(/wxwork/i) == "wxwork";
  182. var isWeixin = !isWXWork && ua.match(/micromessenger/i) == "micromessenger";
  183. console.log("isWeixin", isWeixin, isWXWork);
  184. var isMobile = false;
  185. var isDesktop = false;
  186. if (navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|IEMobile)/i)) {
  187. isMobile = true;
  188. } else {
  189. isDesktop = true;
  190. }
  191. if (isWeixin) {
  192. var containerEl = document.getElementById("wechat-web-container");
  193. containerEl.classList.remove("hidden");
  194. containerEl.classList.add("full", "wechat-web-container");
  195. // 获取签名,timestamp、nonceStr、signature
  196. $.ajax({
  197. url: "请求地址",
  198. dataType: "json",
  199. success: function (res) {
  200. console.log("WeChatConfig", res);
  201. if (res.id === 1) {
  202. var data = res.items; // 根据实际情况返还的数据进行赋值
  203. wx.config({
  204. // debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印
  205. appId: data.appId, // 必填,公众号的唯一标识
  206. timestamp: data.timestamp, // 必填,生成签名的时间戳
  207. nonceStr: data.nonceStr, // 必填,生成签名的随机串
  208. signature: data.signature, // 必填,签名
  209. jsApiList: ["chooseImage"], // 必填,需要使用的JS接口列表(此处随意一个接口即可)
  210. openTagList: ["wx-open-launch-weapp"], // 可选,需要使用的开放标签列表,例如['wx-open-launch-app']
  211. });
  212. /**
  213. * config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后。
  214. * config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。
  215. * 对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中
  216. * */
  217. wx.ready(function (res2) {
  218. console.log("ready", res2);
  219. var launchBtn = document.getElementById("launch-btn");
  220. launchBtn.addEventListener("ready", function (e) {
  221. console.log("开放标签 ready");
  222. });
  223. launchBtn.addEventListener("launch", function (e) {
  224. console.log("开放标签 success");
  225. });
  226. launchBtn.addEventListener("error", function (e) {
  227. console.log("开放标签 fail", e.detail);
  228. });
  229. });
  230. // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名
  231. wx.error(function (err) {
  232. console.log("error", err);
  233. });
  234. }
  235. }
  236. })
  237. // var launchBtn = document.getElementById("launch-btn");
  238. // launchBtn.addEventListener("ready", function (e) {
  239. // console.log("开放标签 ready");
  240. // });
  241. // launchBtn.addEventListener("launch", function (e) {
  242. // console.log("开放标签 success");
  243. // });
  244. // launchBtn.addEventListener("error", function (e) {
  245. // console.log("开放标签 fail", e.detail);
  246. // });
  247. // wx.config({
  248. // // debug: true, // 调试时可开启
  249. // appId: "", // 小程序APPID
  250. // timestamp: 0, // 必填,填任意数字即可
  251. // nonceStr: "nonceStr", // 必填,填任意非空字符串即可
  252. // signature: "signature", // 必填,填任意非空字符串即可
  253. // jsApiList: ["chooseImage"], // 必填,随意一个接口即可
  254. // openTagList: ["wx-open-launch-weapp"], // 填入打开小程序的开放标签名
  255. // });
  256. } else if (isDesktop) {
  257. // 在 pc 上则给提示引导到手机端打开
  258. var containerEl = document.getElementById("desktop-web-container");
  259. containerEl.classList.remove("hidden");
  260. containerEl.classList.add("full", "desktop-web-container");
  261. } else {
  262. var containerEl = document.getElementById("public-web-container");
  263. containerEl.classList.remove("hidden");
  264. containerEl.classList.add("full", "public-web-container");
  265. // 云函数
  266. // 因未开通云开发环境,此处不做处理
  267. // var c = new cloud.Cloud({
  268. // identityless: true, // 必填,表示是未登录模式
  269. // resourceAppid: "小程序 AppID", // 资源方 AppID
  270. // resourceEnv: '云开发环境 ID', // 资源方环境 ID
  271. // });
  272. // await c.init();
  273. // window.c = c;
  274. // var buttonEl = document.getElementById("public-web-jump-button");
  275. // var buttonLoadingEl = document.getElementById("public-web-jump-button-loading");
  276. // try {
  277. // await openWeapp(() => {
  278. // buttonEl.classList.remove("weui-btn_loadin");
  279. // buttonLoadingEl.classList.add("hidden");
  280. // })
  281. // } catch (error) {
  282. // buttonEl.classList.remove("weui-btn_loadin");
  283. // buttonLoadingEl.classList.add("hidden");
  284. // throw error;
  285. // }
  286. }
  287. });
  288. async function openWeapp(onBeforeJump) {
  289. console.log("未开通云开发环境", onBeforeJump);
  290. // 因未开通云开发环境,此处不做处理
  291. // var c = window.c;
  292. // const res = await c.callFunction({
  293. // name: "public",
  294. // data: {
  295. // action: "getUrlScheme",
  296. // },
  297. // });
  298. // console.warn(res);
  299. // if (onBeforeJump) {
  300. // onBeforeJump();
  301. // }
  302. // location.href = res.result.openlink;
  303. }
  304. </script>
  305. </body>
  306. </html>

错误提示

(1)没有在“JS接口安全域名”设置

40575202307261047364650.png

成功提示

(1)微信开发者工具

f8c88202307261047471808.png

(2)真机:会有要打开小程序的名字

151c1202307261048019614.png

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/858942
推荐阅读
相关标签
  

闽ICP备14008679号