Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 588 Bytes

tongji.md

File metadata and controls

16 lines (13 loc) · 588 Bytes

百度统计

单页应用统计如何统计PV

History API 模式

百度统计支持History API,不支持hashchange。在百度统计>管理>单页应用设置中,打开开启按钮即可对SPA进行统计。

hash 模式

在每次hash变化时,加PV。如果用的是 vue-router,代码这么写:

// 用户访问一个安装了百度统计代码的页面时,不自动发送PV的统计请求
_hmt.push(['_setAutoPageview', false]) 
router.beforeEach((to, from, next) => {
    _hmt.push(['_trackPageview', `/wechat${to.path}`]) // SPA页面加PV
})