appId:"wxcf9d8d209eae5a7e
html部分代码如下:
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<wx-open-subscribe template="BMo3CqKNej9g5wQ8fgLNThSmXK3kym7k_t39UJ85i-w" id="subscribe-btn">
<script type="text/wxtag-template">
<style>
.subscribe-btn {
/*对应标签样式*/
width: 100%;
height: 50px;
text-align: center;
line-height: 50px;
color: #fff;
background-color: #07c160;
}
</style>
<div class="subscribe-btn">一次性模版消息订阅</div>
</script>
</wx-open-subscribe>
然后在js部分,ajax调用服务端接口,获取签名等信息,获取成功后,配置wx.config,并且在wx.ready中增加按钮监听,但是页面加载后,无法拉起授权
js部分代码如下:
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: r.appId,
timestamp: r.timestamp, // 必填,生成签名的时间戳
nonceStr: r.nonceStr, // 必填,生成签名的随机串
signature: r.signature,// 必填,签名
jsApiList: ['checkJsApi'], // 必填,需要使用的JS接口列表
openTagList: ['wx-open-subscribe']
});
wx.ready(function () {
console.log('wx ready');
// debugger;
// config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中
var btn = document.getElementById('subscribe-btn');
btn.addEventListener('success', function (e) {
alert("333")
});
btn.addEventListener('error', function (e) {
alert("555")
});
});
wx.error(function(res){
console.log('err', res);
});
在最新的微信开发者工具中,显示[config:ok],具体截图如下:
你好,1、请注意更新到最新版的开发者工具,下载地址:https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
2、请确认 wx.config 里有申请开放标签的权限,参考文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html
真机测试依然无法拉起授权