如何集成 Google 统计分析服务?

如何集成 Google 统计分析服务?

在 Nuxt.js 应用中使用 Google 统计分析服务 ,推荐在 plugins 目录下创建 plugins/ga.js 文件:

  1. /*
  2. ** 只在生产模式的客户端中使用
  3. */
  4. if (process.client && process.env.NODE_ENV === 'production') {
  5. /*
  6. ** Google 统计分析脚本
  7. */
  8. (function (i, s, o, g, r, a, m) {
  9. i.GoogleAnalyticsObject = r; i[r] = i[r] || function () {
  10. (i[r].q = i[r].q || []).push(arguments)
  11. }, i[r].l = 1 * new Date(); a = s.createElement(o),
  12. m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
  13. })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga')
  14. /*
  15. ** 当前页的访问统计
  16. */
  17. ga('create', 'UA-XXXXXXXX-X', 'auto')
  18. }
  19. export default ({ app: { router }, store }) => {
  20. /*
  21. ** 每次路由变更时进行pv统计
  22. */
  23. router.afterEach((to, from) => {
  24. /*
  25. ** 告诉 GA 增加一个 PV
  26. */
  27. ga('set', 'page', to.fullPath)
  28. ga('send', 'pageview')
  29. })
  30. }

记得将 UA-XXXXXXXX-X 替换成你的 Google 统计分析服务的跟踪编号。

然后,我们需要告诉 Nuxt.js 将该插件导入主应用中:

nuxt.config.js

  1. module.exports = {
  2. plugins: [
  3. { src: '~plugins/ga.js', mode: 'client' }
  4. ]
  5. }

恭喜,你的 Nuxt.js 应用成功集成了 Google 的统计分析服务。

提示: 你可以用相同的方法集成别的统计分析服务。