为什么我无法在我的 React 应用程序中访问 google 分析?
Why I'm not able to access google analytics in my React app?
我正在尝试借助 react-ga
挂钩启用 google 分析。
我在 github 上关注了他们的文档,我不知道为什么我没有得到任何数据,也不知道如何调试它。我已将这段 ReactGA.initialize("G-NHW4EP16PN");
代码粘贴到每个页面上,但我仍然没有得到任何东西,而且我的 Firebase 应用程序中还有流配置。
import ReactGA from "react-ga";
function App() {
useEffect(() => {
ReactGA.initialize("G-NHW4EP16PN");
ReactGA.pageview(window.location.pathname + window.location.search);
console.log(window.location.pathname);
}, []);
return (
<>
<Suspense fallback={<LoadingWait src={LoadImg} />}>
<Router>
<Sidebar />
<Switch>
<Route component={Overview} path="/" exact={true} />
<Route component={Work} path="/work" />
<Route component={Services} path="/services" />
<Route component={Contact} path="/contact" />
<Route component={PageNotFound} />
</Switch>
</Router>
</Suspense>
</>
);
}
export default App;
初始化方法将通用分析 gaTrackingID 作为其第一个参数。您发送的是 G-NHW4EP16PN,它不是通用分析跟踪 ID。我会再次检查您的帐户,您似乎正在尝试向其发送 GA4 衡量 ID。
ReactGA.initialize('UA-000000-01', {
debug: true,
titleCase: false,
gaOptions: {
userId: 123
}
});
我正在尝试借助 react-ga
挂钩启用 google 分析。
我在 github 上关注了他们的文档,我不知道为什么我没有得到任何数据,也不知道如何调试它。我已将这段 ReactGA.initialize("G-NHW4EP16PN");
代码粘贴到每个页面上,但我仍然没有得到任何东西,而且我的 Firebase 应用程序中还有流配置。
import ReactGA from "react-ga";
function App() {
useEffect(() => {
ReactGA.initialize("G-NHW4EP16PN");
ReactGA.pageview(window.location.pathname + window.location.search);
console.log(window.location.pathname);
}, []);
return (
<>
<Suspense fallback={<LoadingWait src={LoadImg} />}>
<Router>
<Sidebar />
<Switch>
<Route component={Overview} path="/" exact={true} />
<Route component={Work} path="/work" />
<Route component={Services} path="/services" />
<Route component={Contact} path="/contact" />
<Route component={PageNotFound} />
</Switch>
</Router>
</Suspense>
</>
);
}
export default App;
初始化方法将通用分析 gaTrackingID 作为其第一个参数。您发送的是 G-NHW4EP16PN,它不是通用分析跟踪 ID。我会再次检查您的帐户,您似乎正在尝试向其发送 GA4 衡量 ID。
ReactGA.initialize('UA-000000-01', {
debug: true,
titleCase: false,
gaOptions: {
userId: 123
}
});