H5跳转到小程序wx-open-launch-weapp
2021/4/8 14:25:09
本文主要是介绍H5跳转到小程序wx-open-launch-weapp,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、引用JS
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
}
2、微信配置
wx.config({
debug: true,
appId: ‘’,
timestamp:, // 必填,生成签名的时间戳
nonceStr: ‘’, // 必填,生成签名的随机串
signature: ,// 必填,签名
jsApiList: [‘onMenuShareTimeline’], // 必填,需要使用的JS接口列表
openTagList: [‘wx-open-launch-weapp’] // 可选,需要使用的开放标签列表,例如[‘wx-open-launch-app’]
});
3、html代码
html页面
<wx-open-launch-weapp id="launch-btn" username="gh_***" path=""> // path为空,跳转到小程序首页,不为空,则指定小程序页面 <template> <style> .btn { padding: 12px; } </style> <button class="btn">打开小程序</button> </template> </wx-open-launch-weapp>
vue页面或引用vue.js的页面
<wx-open-launch-weapp username="gh_***" path="" style="display: inline-block;width: 44vw;height: 17vw;"> <script type="text/wxtag-template"> <style> .btn { width: 100%; } </style> <button class="btn">打开小程序</button> </script> </wx-open-launch-weapp>
- 操作
var btn = document.getElementById(‘launch-btn’);
btn.addEventListener(‘launch’, function (e) {
console.log(‘success’);
});
btn.addEventListener(‘error’, function (e) {
console.log(‘fail’, e.detail);
});
这篇关于H5跳转到小程序wx-open-launch-weapp的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-22微信小程序的接口信息py可以抓到吗?-icode9专业技术文章分享
- 2024-11-22怎样解析出微信小程序二维码带的参数?-icode9专业技术文章分享
- 2024-11-22微信小程序二维码怎样解析成链接?-icode9专业技术文章分享
- 2024-11-22微信小程序接口地址的域名需要怎么设置?-icode9专业技术文章分享
- 2024-11-22微信小程序的业务域名有什么作用-icode9专业技术文章分享
- 2024-11-22微信小程序 image有类似html5的onload吗?-icode9专业技术文章分享
- 2024-11-22微信小程序中怎么实现文本内容超出行数后显示省略号?-icode9专业技术文章分享
- 2024-11-22微信小程序怎么实现分享样式定制和图片定制功能?-icode9专业技术文章分享
- 2024-11-20微信小程序全栈教程:从零开始的全攻略
- 2024-11-19微信小程序全栈学习:从零开始的完整指南