摘要
本文主要讲述了:
- 背景
- 百度统计
正文
背景
做完项目上线之后,为了掌握项目的具体使用情况,需要配置统计工具。
Vue 单页面应用实际上只有 1 个 index.html 文件,它的路由是通过 hash 来模拟的。
一般的统计代码默认是无法统计虚拟路由的,因此都需要在全局后置 Hook(此时页面已经渲染完成)里手动调用 JavaScript API 进行统计。
百度统计
my-vue/public/index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>Document</title> </head> <body> <script> var _hmt = _hmt || []; _hmt.push(['_setAutoPageview', false]); (function () { var hm = document.createElement('script'); hm.async = true; hm.src = '//hm.baidu.com/hm.js?YOUR_ID'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>
|
my-vue/src/router.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| import Vue from 'vue'; import Router from 'vue-router'; import Home from './views/Home.vue';
Vue.use(Router);
const router = new VueRouter({ routes: [ { path: '/', name: 'home', component: Home, }, ], });
router.afterEach((to, from) => { _hmt.push(['_trackPageview', to.path]); });
export default router;
|
参考资料
本文对你有帮助?请支持我