wx-open-launch-app 拉起app的操作能不能通过其他按钮来完成?
发布于 7 年前 作者 fcheng 6817 次浏览 来自 官方Issues
<wx-open-launch-app
  id="launch-btn"
  appid="your-appid"
  extinfo="your-extinfo"
>
  <template>
    <style>.btn { padding: 12px }</style>
    <button class="btn">App内查看<button>
  </template>
</wx-open-launch-app>
<script>
  var btn = document.getElementById('launch-btn');
  btn.addEventListener('launch', function (e) {
    console.log('success');
  });
  btn.addEventListener('error', function (e) {
    console.log('fail', e.detail);
  });
</script>
上面的代码只能通过点击button来拉起app,能不能点击其他的按钮来触发这个button的点击事件然后拉起app呢 
回到顶部