Google Analytics:事件跟踪参数
我的网站使用 ga。
但是当我像这样调用跟踪事件时,
_gaq.push(['_trackEvent', 'abc', 'def','pqr','xyz']);
它不起作用,但是当我通过删除最后一个参数(即“xyz”)调用函数时,它可以正常工作,它看起来像这样,
_gaq.push(['_trackEvent', 'abc', 'def','pqr']);
其中 _gaq 是一个包含我的 ga 帐户号的数组。和域名信息。
我担心的是我想像这样用“_trackEvent”参数传递四个参数..
_gaq.push(['_trackEvent', category, action,label,value]);
但这不起作用。
请帮忙
I am using ga for my website.
but when i call track event like this
_gaq.push(['_trackEvent', 'abc', 'def','pqr','xyz']);
it does not work but when i call function by removing last parameter i.e 'xyz' it works properly it looks like this
_gaq.push(['_trackEvent', 'abc', 'def','pqr']);
where _gaq is an array which contains my ga account no. and domain info.
my concern is I want to pass four parameter with '_trackEvent' parameter like this..
_gaq.push(['_trackEvent', category, action,label,value]);
but this is not working.
Plz help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google Analytics API 事件跟踪指南指出
trackEvent
方法接受 5 个参数:倒数第二个参数(值) 必须是整数,因此在传递字符串时不起作用。
The Google Analytics API Event Tracking Guide states that the
trackEvent
method accepts 5 parameters:The second-to-last parameter (value) has to be an integer, and so does not work when a string is passed.