Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在ReactGA(事件)中添加自定义维度?
ReactGA
我尝试了以下方法:
GoogleAnalytics.set({ email: 'my_email', id: 'my_id', })
但它不起作用。
您可以使用以下代码段来做到这一点:
import ReactGA from 'react-ga'; ReactGA.set({ 'email': 'my_email', 'id': 'my_id' })