Adding Google Analytics to React

后端 未结 6 1549
别那么骄傲
别那么骄傲 2021-01-30 16:23

I am trying to add Google Analytics to a React Web Application.

I know how to do it in HTML/CSS/JS sites and I have integrated it in an AngularJS app too. But, I\'m not

6条回答
  •  太阳男子
    2021-01-30 16:49

    If you prefer not to use a package this is how it can work in a react application. Add the "gtag" in index.html

    
    
    
    
    

    In the submit action of the login form, fire off the event

    window.gtag("event", "login", {
                event_category: "access",
                event_label: "login"
            });
    

提交回复
热议问题