微信公众号 打开 app问题 用的 jsApiList如何配置呢? 并且点击事件 一直触发不
这个wx.config里面的 jsApiList需要配置吗?
签名成功了 但是点击事件 不出发。不知道什么原因
<wx-open-launch-app
id="launch-btn"
appid="564544565"
extinfo="your-extinfo"
>
<button class="btn">打开</button>
</wx-open-launch-app>
var btn = document.getElementById('launch-btn');
btn.addEventListener('launch', function (e) {
console.log('success');
});
btn.addEventListener('error', function (e) {
console.log('fail', e.detail);
});