<wx-open-subscribe template="TenvU22BA1jCp4YHfYEpRuESXYReQyDuhs4vbdWA99I" id="subscribe-btn">
<template slot="style">
<style>
.subscribe-btn {
color: #fff;
background-color: #07c160;
}
</style>
</template>
<template>
<button class="subscribe-btn">
一次性模版消息订阅
</button>
</template>
</wx-open-subscribe>
<script>
var btn = document.getElementById('subscribe-btn'); btn.addEventListener('success', function(e){
console.log('e.detail');
});
btn.addEventListener('error',function(e){
console.log('fail', e.detail);
});
</script>
按照官方上的例子测试后发现并不能正常显示订阅按钮,请问是有什么限制吗?
看一下weixin-js-sdk是不是1.6的,另外不要用例子里的模板id。
微信版本要求为:7.0.12及以上。 系统版本要求为:iOS 10.3及以上、Android 5.0及以上。
请问解决了吗,wx-open-subscribe中的template不显示
只需要添加openTagList吗?安卓机上添加了夜不显示
+1
同问