当前位置:   article > 正文

H5网页跳转微信小程序_html 自动跳转 小程序

html 自动跳转 小程序

官方文档

https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html

适用于微信浏览器、外部浏览器打开小程序

需要的工具和资料

微信开发者工具、非个人主体并且已认证的小程序

步骤

打开微信开发者工具申请云开发

购买云开发

购买成功后会有一个云开发ID,这个很重要后面会用到

然后点击更多申请静态网站

如果没有的静态网站这个选项需要到腾讯云后台开通,大概需要几分钟的样子

下一步需要创建一个云开发的小程序

创建成功后应该会有这样的一个文件夹

这个就是云函数调用的库。

如果目前的项目是传统的小程序项目那么需要转成云开发的小程序的步骤是

在目录内创建一个cloudfunctions的文件夹

然后打开

project.config.json的文件,添加以下语句

如果你的账号已经开通了云开发,那么开发者工具会把cloudfunctions去自动绑定云开发。

然后在app.js中添加以下语句。

curr_env这个变量就是,云开发的环境Id

然后查看官方文档,下载H5跳小程序的云函数示例代码。

https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html#:~:text=%3A-,%E7%82%B9%E5%87%BB%E4%B8%8B%E8%BD%BD,-%E6%96%B0%E5%BB%BA%E4%B8%80%E4%B8%AA%E4%BA%91

下载之后应该有下面的两个文件夹

打开clouldfunctions 可以看到里面的public文件夹

将public文件夹拷贝到 项目小程序cloudfunctions文件夹下

打开index.js 文件

填入你要跳转小程序的页面,

改好之后,然后选中public文件右键

选中在内建终端中打开

填入命令npm install

安装完成后

再次选中public文件夹右键

点击:上传并部署:不上传node_modules 这个选项

打开云开发环境查看部署是否成功。

查看是否部署成功

下一步添加静态网站网页

看官方文档的示例代码

  1. <html>
  2. <head>
  3. <title>打开小程序</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
  6. <script>
  7. window.onerror = e => {
  8. console.error(e)
  9. alert('发生错误' + e)
  10. }
  11. </script>
  12. <!-- weui 样式 -->
  13. <link rel="stylesheet" href="https://res.wx.qq.com/open/libs/weui/2.4.1/weui.min.css"></link>
  14. <!-- 调试用的移动端 console -->
  15. <!-- <script src="https://cdn.jsdelivr.net/npm/eruda"></script> -->
  16. <!-- <script>eruda.init();</script> -->
  17. <!-- 公众号 JSSDK -->
  18. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  19. <!-- 云开发 Web SDK -->
  20. <script src="https://res.wx.qq.com/open/js/cloudbase/1.1.0/cloud.js"></script>
  21. <script>
  22. function docReady(fn) {
  23. if (document.readyState === 'complete' || document.readyState === 'interactive') {
  24. fn()
  25. } else {
  26. document.addEventListener('DOMContentLoaded', fn);
  27. }
  28. }
  29. docReady(async function() {
  30. var ua = navigator.userAgent.toLowerCase()
  31. var isWXWork = ua.match(/wxwork/i) == 'wxwork'
  32. var isWeixin = !isWXWork && ua.match(/micromessenger/i) == 'micromessenger'
  33. var isMobile = false
  34. var isDesktop = false
  35. if (navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|IEMobile)/i)) {
  36. isMobile = true
  37. } else {
  38. isDesktop = true
  39. }
  40. if (isWeixin) {
  41. var containerEl = document.getElementById('wechat-web-container')
  42. containerEl.classList.remove('hidden')
  43. containerEl.classList.add('full', 'wechat-web-container')
  44. var launchBtn = document.getElementById('launch-btn')
  45. launchBtn.addEventListener('ready', function (e) {
  46. console.log('开放标签 ready')
  47. })
  48. launchBtn.addEventListener('launch', function (e) {
  49. console.log('开放标签 success')
  50. })
  51. launchBtn.addEventListener('error', function (e) {
  52. console.log('开放标签 fail', e.detail)
  53. })
  54. wx.config({
  55. // debug: true, // 调试时可开启
  56. appId: '小程序 AppID', // <!-- replace -->
  57. timestamp: 0, // 必填,填任意数字即可
  58. nonceStr: 'nonceStr', // 必填,填任意非空字符串即可
  59. signature: 'signature', // 必填,填任意非空字符串即可
  60. jsApiList: ['chooseImage'], // 必填,随意一个接口即可
  61. openTagList:['wx-open-launch-weapp'], // 填入打开小程序的开放标签名
  62. })
  63. } else if (isDesktop) {
  64. // 在 pc 上则给提示引导到手机端打开
  65. var containerEl = document.getElementById('desktop-web-container')
  66. containerEl.classList.remove('hidden')
  67. containerEl.classList.add('full', 'desktop-web-container')
  68. } else {
  69. var containerEl = document.getElementById('public-web-container')
  70. containerEl.classList.remove('hidden')
  71. containerEl.classList.add('full', 'public-web-container')
  72. var c = new cloud.Cloud({
  73. // 必填,表示是未登录模式
  74. identityless: true,
  75. // 资源方 AppID
  76. resourceAppid: '小程序 AppID', // <!-- replace -->
  77. // 资源方环境 ID
  78. resourceEnv: '云开发环境 ID', // <!-- replace -->
  79. })
  80. await c.init()
  81. window.c = c
  82. var buttonEl = document.getElementById('public-web-jump-button')
  83. var buttonLoadingEl = document.getElementById('public-web-jump-button-loading')
  84. try {
  85. await openWeapp(() => {
  86. buttonEl.classList.remove('weui-btn_loading')
  87. buttonLoadingEl.classList.add('hidden')
  88. })
  89. } catch (e) {
  90. buttonEl.classList.remove('weui-btn_loading')
  91. buttonLoadingEl.classList.add('hidden')
  92. throw e
  93. }
  94. }
  95. })
  96. async function openWeapp(onBeforeJump) {
  97. var c = window.c
  98. const res = await c.callFunction({
  99. name: 'public',
  100. data: {
  101. action: 'getUrlScheme',
  102. },
  103. })
  104. console.warn(res)
  105. if (onBeforeJump) {
  106. onBeforeJump()
  107. }
  108. location.href = res.result.openlink
  109. }
  110. </script>
  111. <style>
  112. .hidden {
  113. display: none;
  114. }
  115. .full {
  116. position: absolute;
  117. top: 0;
  118. bottom: 0;
  119. left: 0;
  120. right: 0;
  121. }
  122. .public-web-container {
  123. display: flex;
  124. flex-direction: column;
  125. align-items: center;
  126. }
  127. .public-web-container p {
  128. position: absolute;
  129. top: 40%;
  130. }
  131. .public-web-container a {
  132. position: absolute;
  133. bottom: 40%;
  134. }
  135. .wechat-web-container {
  136. display: flex;
  137. flex-direction: column;
  138. align-items: center;
  139. }
  140. .wechat-web-container p {
  141. position: absolute;
  142. top: 40%;
  143. }
  144. .wechat-web-container wx-open-launch-weapp {
  145. position: absolute;
  146. bottom: 40%;
  147. left: 0;
  148. right: 0;
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. }
  153. .desktop-web-container {
  154. display: flex;
  155. flex-direction: column;
  156. align-items: center;
  157. }
  158. .desktop-web-container p {
  159. position: absolute;
  160. top: 40%;
  161. }
  162. </style>
  163. </head>
  164. <body>
  165. <div class="page full">
  166. <div id="public-web-container" class="hidden">
  167. <p class="">正在打开 “填入你的小程序名称”...</p> <!-- replace -->
  168. <a id="public-web-jump-button" href="javascript:" class="weui-btn weui-btn_primary weui-btn_loading" onclick="openWeapp()">
  169. <span id="public-web-jump-button-loading" class="weui-primary-loading weui-primary-loading_transparent"><i class="weui-primary-loading__dot"></i></span>
  170. 打开小程序
  171. </a>
  172. </div>
  173. <div id="wechat-web-container" class="hidden">
  174. <p class="">点击以下按钮打开 “填入你的小程序名称”</p> <!-- replace -->
  175. <!-- 跳转小程序的开放标签。文档 https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html -->
  176. <wx-open-launch-weapp id="launch-btn" username="小程序原始账号 ID(gh_ 开头的)" path="要跳转到的页面路径"> <!-- replace -->
  177. <template>
  178. <button style="width: 200px; height: 45px; text-align: center; font-size: 17px; display: block; margin: 0 auto; padding: 8px 24px; border: none; border-radius: 4px; background-color: #07c160; color:#fff;">打开小程序</button>
  179. </template>
  180. </wx-open-launch-weapp>
  181. </div>
  182. <div id="desktop-web-container" class="hidden">
  183. <p class="">请在手机打开网页链接</p>
  184. </div>
  185. </div>
  186. </body>
  187. </html>

官方代码需要改的的地方有以下两处

  1. wx.config({
  2. // debug: true, // 调试时可开启
  3. appId: '小程序 AppID', // <!-- replace 填入你要跳转的小程序的APPId -->
  4. timestamp: 0, // 必填,填任意数字即可
  5. nonceStr: 'nonceStr', // 必填,填任意非空字符串即可
  6. signature: 'signature', // 必填,填任意非空字符串即可
  7. jsApiList: ['chooseImage'], // 必填,随意一个接口即可
  8. openTagList:['wx-open-launch-weapp'], // 填入打开小程序的开放标签名
  9. })
  1. var c = new cloud.Cloud({
  2. // 必填,表示是未登录模式
  3. identityless: true,
  4. // 资源方 AppID
  5. resourceAppid: '小程序 AppID', // <!-- 填入你要跳转的小程序的APPId replace -->
  6. // 资源方环境 ID
  7. resourceEnv: '云开发环境 ID', // <!-- 填入你自己的云开发的环境Id replace -->
  8. })
  1. <wx-open-launch-weapp id="launch-btn" username="小程序原始账号 ID(gh_ 开头的) 打开你的微信小程序管理平台 在设置中可以找到 你的小程序原始账号 填入即可" path="要跳转到的页面路径"> <!-- replace -->
  2. <template>
  3. <button style="width: 200px; height: 45px; text-align: center; font-size: 17px; display: block; margin: 0 auto; padding: 8px 24px; border: none; border-radius: 4px; background-color: #07c160; color:#fff;">打开小程序</button>
  4. </template>
  5. </wx-open-launch-weapp>

下一步将改好的静态index.html 上传到云开发环境中

 上传成功后就可以冲网络配置中查看测试域名访问就行了

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

闽ICP备14008679号