1

我想在我的 react 应用程序上实现 Google Analytics,并且我已经使用 react-ga 模块进行了设置。

import ReactGA from "react-ga";
...
ReactGA.initialize('analytics-code-here');

const App = () => {

    useEffect(() => {
        ReactGA.set({ page: window.location.pathname + window.location.search});
        ReactGA.pageview(window.location.pathname + window.location.search)
    }, [])

    return (
       ...
    );

我在两天前设置了它,但没有数据发送到我的分析帐户。
我如何将数据接收到 Google Analytics 中?

4

1 回答 1

0

对于不需要使用set命令的综合浏览量,只需使用这些行来初始化 GA 和跟踪综合浏览量:

import ReactGA from 'react-ga';
ReactGA.initialize('UA-000000-01');
ReactGA.pageview(window.location.pathname + window.location.search);

https://github.com/react-ga/react-ga

于 2020-08-23T08:47:50.103 回答