react-ga - 最简单的 Google React 分析设置 - 无响应

react-ga - simplest Google Analytics set-up on React - no response

我正在尝试在我的 React 应用程序上设置 Google 分析,但我无法正常工作。

我已按照文档进行操作,运行 我的 app.js 中包含以下代码:

import ReactGA from 'react-ga'
  ...
useEffect(() => {
    ReactGA.initialize(process.env.REACT_APP_GOOGLE_ANALYTICS)
    ReactGA.pageview('/')
    ReactGA.pageview(window.location.pathname + window.location.search);
  }, [])

(我已将我的跟踪 ID 保存到我的 .env 文件中,该文件是我从 analytics.google 控制台复制的)

我是 运行 我的应用来自 localhost:3000,但是在 Chrome 中我的开发者工具中的网络选项卡没有发送任何东西(我假设你会在那里看到数据发送回 Google Analytics)。我也试过在此处遵循“演示代码”:https://github.com/react-ga/react-ga

我的 Google 分析控制台没有任何变化,我的开发者工具也没有看到任何变化。

有人可以告诉我如何开始吗?

好的,所以我的 Chrome 扩展中有一个广告拦截器 运行,它正在杀死 Google 分析。我的开发人员工具中没有错误消息,因此无法解决,只是因为我在 react-ga 问题页面中看到了这个 post: https://github.com/react-ga/react-ga/issues/449

希望这可以节省其他人的时间!