收藏
回答

使用开放标签wx-open-launch-app,监听ready提示isTrusted:false?

// 引入
<wx-open-launch-app
  ref={refBtn}
  id="launch-btn"
  appid="wx44c3c35a987b82ff"
>
  <script type="text/wxtag-template">
    <style>{btnStyle}</style>
    <button className="shareButton">打开App,和客户聊聊吧222</button>
  </script>
</wx-open-launch-app>
// 监听
refBtn.current?.addEventListener('ready', e => {
  console.log('btn-ready', e);
  console.log(e?.detail);
});
refBtn.current?.addEventListener('error', e => {
  console.log('fail', e);
  console.log(e?.detail);
});

回答关注问题邀请回答
收藏

1 个回答

  • Luo
    Luo
    2023-07-11

    另外通过将链接转成二维码后扫码可以打开app,这是啥逻辑

    2023-07-11
    有用
    回复
登录 后发表内容