本人使用的VUE框架。
代码提示:
1、vue代码;
2、点击事件代码;
3、php代码;
遇到的大坑重要提示:
3、必须是认证服务号;
4、必须是服务号绑定的微信小程序
5、https接口获取服务号的access_token
6、如果你的https接口没有问题,但是你的wx-open-launch-weapp标签没有显示或者点击无反应。有以下原因:
1》、vue代码样式问题,可以根据我的代码写样式,最好写成一样的。
2》、在微信开发者工具没有反应的话,最好在微信客户端试试。
3》、JSSDK版本是1.6.0。
4》、如果框架写上还不行,可以试试在文件main.js中,写上:
Vue.config.ignoredElements = [‘wx-open-launch-app’, ‘wx-open-launch-weapp’];
新增项:
5》、在小程序后台配置上业务域名,域名必须有证书。代码放到服务器上,用业务域名访问。
官方链接参考:
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html
还是不行的话,下方留言或者私信我。
1、<template>
<div class=“cnt”>
<div>
<button @click=“onClickOpens”>新开页面跳转</button>
</div>
<div class=“test-position”>
<wx-open-launch-weapp
id="launch-btn"
username="gh_xxxxxxxxxx"
path=“pages/index/index.html?user=123&action=abc”
>
<script type=“text/wxtag-template”>
<style>.btn {width: 200px; height: 100px;}</style>
<button class=“btn”>打开测试小程序</button>
</script>
</wx-open-launch-weapp>
</div>
</div>
</template>
2、
onClickOpens() {
this.$axios({
method: “POST”,
url: “https://接口”,
data: {
url: window.location.href,
},
}).then(function (res) {
console.log(res);
if (res.status == 200) {
console.log(res.data.appid);
wx.config({
debug: true,
appId: res.data.appid,
timestamp: res.data.timestamp,
nonceStr: res.data.nonce_str,
signature: res.data.sign,
jsApiList: [“scanQRCode”],
openTagList: [“wx-open-launch-weapp”], // 可选,需要使用的开放标签列表,例如[‘wx-open-launch-weapp’]
});
wx.error(function (res) {
console.log(res);
// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
});
}
});
},
3、
同问,按钮不显示,wx.error errMsg: "config:invalid signature"
path=“pages/index/index.html?user=123&action=abc” 动态怎么传值呀?
<script type="text/javascript">
document.write("<wx-open-launch-weapp id='launch-btn' username='gh_xxxxxx' path='/pages/index/index.html?scene="+ $scene +"'>");
</script>
<template>
<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>
</template>
</wx-open-launch-weapp>
你好。请问签名时而成功,时而失败这个问题见过嘛?
errMsg: "config:fail,Error: 系统错误,错误码:63002,invalid signature [20210224 15:37:31][]"
请问 H5 跳转到小程序
使用开发语言是React
window.wx.config({
debug: true,
appId: wxData.appId,
timestamp: wxData.timestamp,
nonceStr: wxData.nonceStr,
signature: wxData.signature,
jsApiList: ['wx-open-launch-weapp' ],
openTagList: ['wx-open-launch-weapp']
});
});
使用什么方法进行 调起微信小程序呢 ?
初始化sdk 已经ok ,但是openTagList 打印的是[ ],这个是神原因导致的呢
大佬,可以帮忙看看我的问题吗?卡了一天了,不知道问题出在哪
加载小程序信息超时,无法启动(4,-10005),怎么解决?? - 微信开放社区 https://developers.weixin.qq.com/community/develop/doc/00044e991541588e61103661561000
求指点,没有用
最近改了什么,怎么全部都不显示了
请求的接口必须是https吗
我config都初始化好了,点击不跳转,回调fail,公众号也绑定了小程序