微信h5网页跳转小程序方案


接入要求

  • 主体要求: 仅开放给已认证的服务号
  • 系统要求:微信版本要求为:7.0.12及以上。系统版本要求为:iOS 10.3及以上、Android 5.0及以上

接入微信JS-SDK

包使用方式

1
"weixin-js-sdk": "^1.6.0"

直接在页面上使用

1
2
3
4
5
6
7
8
9
10
  在需要调用JS接口的页面引入如下JS文件:http://res.wx.qq.com/open/js/jweixin-1.6.0.js (支持https)  
wx.config({
appId: '',
debug: true,
timestamp: '',
nonceStr: '',
signature: '',
jsApiList: [],
openTagList: ['wx-open-launch-app','wx-open-launch-weapp'] // 获取开放标签权限
});

需要注意的点

  • wx.config 内列出使用到的 openTagList
  • 符合开放平台列出的要求
  • app 需要根据接入微信 sdk

在vue中使用例子

第1步 在main.js中设置

1
2
// 忽略微信自定义标签
Vue.config.ignoredElements = ['wx-open-launch-weapp','wx-open-launch-app']

第2步 获取微信版本

1
2
3
4
5
// 获取微信版本
// return eg. 7.0.16.1600
getWeixinVersion() {
return navigator.userAgent.match(/MicroMessenger\/([\d\.]+)/i)[1]
},
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  created(){
// 微信版本号大于 7.0.12 开放标签才可进行
const wxVersion = this.isWechat() && this.getWeixinVersion() || ''
if(wxVersion){
let v = wxVersion.split('.')
if(v[0]>=7){
if(v[1]>=0){
if(v[2]>=12){
this.enableLaunchWeapp = true
}
}
}
}
},

第3步 在页面上展示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <div v-if="enableLaunchWeapp">
<wx-open-launch-weapp
id="launch-btn"
username="gh_ed1212c48129d7fa3d"
path="/pages/home/index.html"
>
<script type="text/wxtag-template">
<style>
.goodsname {
font-size: 16px;
color: #333333;
font-weight: 600;
line-height: 24px;
margin-bottom: 5px;
}
</style>
<h1 class="goodsname">{{ goodsInfo.goodsName }}</h1>
</script>
</wx-open-launch-weapp>
</div>
<h1 v-else>{{ goodsInfo.goodsName }}</h1>

需要注意

  • 在vue中需要加上 <script type="text/wxtag-template”></script>包裹元素,否则按钮不能展示
  • username为小程序原始id,需要在小程序后台设置那里获取
  • path是打开小程序的指定页面,需要加上.html 如/pages/home/index.html
  • style中样式写法需要注意,goods-name 好像不支持,需要这样写goodsname,只支持px格式

第4步 监听开发标签回调事件

1
2
3
4
5
6
7
8
9
  mounted(){
var btn = document.getElementById('launch-btn')
btn.addEventListener('launch', e => {
console.log('success');
});
btn.addEventListener('error', e => {
console.log('fail', e.detail);
});
}

文章作者: 范昌锐
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 范昌锐 !
  目录