Google Analytics跟踪具有独特价值的事件目标

时间:2013-02-27 17:28:08

标签: google-analytics

我已使用以下参数设置了分析目标:

Target type: Event
Category (matching): form
Action (matching): test
Label (matching): sent
Value: nothing

我有这个anlytics推动:

<script type="text/javascript">
_gaq.push(['_trackEvent', 'form', 'test', 'sent', '*dynamic_URI*']);
</script>

这会起作用吗? * dynamic_URI *会被注册吗?

2 个答案:

答案 0 :(得分:0)

来自https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide

_trackEvent(category, action, opt_label, opt_value, opt_noninteraction)    

value (optional)
An integer that you can use to provide numerical data about the user event.

所以你不能传递一个url作为第四个(“value”)参数。

据我所知,value参数旨在帮助进行adwords ROI计算(将$$值分配给非电子商务事件)。

答案 1 :(得分:0)

感谢您的回答! :)

我为自己的目标做了一些改变,希望能有所作为。

Type: URL Destination
Goal URL: /form/test/*
Match type: Regular Expression Match

我的javascript:

<script type="text/javascript">
_gaq.push(['_trackPageview', '/form/test/*dynamic_URI*']);
</script>