我在 react-ga npm 模块的帮助下在我的反应网站中实现了谷歌分析。我能够生成用户报告
和页面浏览报告
history.listen(location => {
ReactGA.set({ userId: sessionStorage.getItem("networkId") });
ReactGA.set({ page: location.pathname });
ReactGA.pageview(location.pathname);
});
componentDidMount(){
ReactGA.initialize(key);
}
我想查看所有用户访问了谁“/merchportal/itemavailability” (用户 ID,不计入)。我怎样才能做到这一点?这甚至可能与当前的实现?