微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 PWA 对话框中检测安装点击事件?

如何解决如何在 PWA 对话框中检测安装点击事件?

我想在Flutter中跟踪认PWA安装对话框的安装事件。 因此,如果您对如何通过 service-worker 或其他方式进行跟踪有任何想法,请评论您的答案。

enter image description here

提前致谢:)

解决方法

如果您有自己的安装 UI,您可以捕获 beforeinstallprompt 事件,并且当用户点击您的安装按钮时,您可以捕获安装对话框的结果:

// You save the prompt on the beforeinstallprompt event handler
// prompt will show the browser install pop dialog
deferredPrompt.prompt()

//Here you capture the outcome
const { outcome } = await deferredPrompt.userChoice;

//send the event to google analytics for tracking
ga('send','event',{
  eventCategory: 'pwa-install',eventAction: 'promo-clicked',eventValue: outcome === 'accepted' ? 1 : 0,}

如果您没有自己的安装 UI,则在 Edge 和 Chrome 上,您可以使用 'onappinstalled' 事件来捕获安装。

video 包含有关安装周期以及如何使用谷歌分析记录事件的更多详细信息

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。