HMTL OnClick发出的gtag调用未达到GA

时间:2019-01-04 09:03:19

标签: html google-analytics gtag.js

意识到自己不是在使用旧的analytics.js,而是在使用gatg.js,对此感到迷惑不解。 下面的呼叫不会被触发,因此针对Google documentation for ga to gtag Migration的呼叫将无法正常工作:

<a href="https://example.com" 
    onclick="gtag('event', {
        'event_category': 'Downloads', 
        'event_action': 'download', 
        'event_label': 'softwarename', 
        'value': '1'});">
Download</a>

关于如何格式化gtag调用的任何建议,以使其可行?

1 个答案:

答案 0 :(得分:0)

绊倒gtag.js documentaion之后,我发现必须使用另一种语法,并且确实可以进行转换:

eventAction => event_action

不能按照问题中提到的迁移文档中的建议工作。 可行的调用将action参数拖到最前面,例如:

<a href="https://example.com" 
onclick="gtag('event', 'download', {
    'event_category': 'Downloads',  
    'event_label': 'softwarename', 
    'value': '1'});">Download</a>