- Progressive Web Application Development by Example
- Chris Love
- 247字
- 2021-08-05 10:33:21
Tracking homescreen installs
Once the homescreen install prompt displays, the user can choose to add the PWA to their homescreen, or ignore the prompt. Businesses should track and measure everything possible to make better decisions. Knowing how many homescreen installs there have been and what rate customers install their PWA provides insight into their marketing and technology investments.
Chrome supports the beforeinstallprompt event, which can be used to track this activity. You can add a handler to this event and log each user's choice:
window.addEventListener('beforeinstallprompt', function(event) { event.userChoice.then(function(result) { if(result.outcome == 'dismissed') { // They dismissed, send to analytics }else { // User accepted! Send to analytics } }); });
You can POST the user's choice to your analytics system. This could be a custom API to your internal analytics or even tied to your third-party service, like Google Analytics.
The beforeinstallprompt is part of the web manifest specification, but at the time of writing this book, it is only supported by Chrome. Hopefully, other browsers will add support soon.
Browsers that don't support beforeinstallprompt can also provide feedback. The web manifest's start_url can be set either to a special start URL, or a custom querystring value appended to the default URL. You will need to add logic to your log analyzer to track this behavior. Besides just knowing how many homescreen installs you have, you can also track how many times users have launched your PWA as opposed to those who have not installed your PWA.
- 網(wǎng)絡(luò)云百問百答
- 數(shù)據(jù)通信網(wǎng)絡(luò)實踐:基礎(chǔ)知識與交換機技術(shù)
- 智能網(wǎng)聯(lián)汽車V2X與智能網(wǎng)聯(lián)設(shè)施I2X
- 計算機網(wǎng)絡(luò)與數(shù)據(jù)通信
- 物聯(lián)網(wǎng)與無線傳感器網(wǎng)絡(luò)
- 企業(yè)網(wǎng)絡(luò)安全管理
- 城域網(wǎng)與廣域網(wǎng)(第2版)
- Kong網(wǎng)關(guān):入門、實戰(zhàn)與進階
- 基于IPv6的家居物聯(lián)網(wǎng)開發(fā)與應(yīng)用技術(shù)
- Qt5 Python GUI Programming Cookbook
- Microsoft System Center 2012 Configuration Manager:Administration Cookbook
- 物聯(lián)網(wǎng):感知、傳輸與應(yīng)用
- 網(wǎng)絡(luò)設(shè)備配置與調(diào)試項目實訓(xùn)
- 世界網(wǎng)力:2018年中國網(wǎng)信產(chǎn)業(yè)桔皮書
- OpenCV 3 Computer Vision with Python Cookbook