检查是否已包含Google Analytics库

时间:2012-07-16 08:16:43

标签: google-analytics loading inclusion

使用Google Analytics实施自定义解决方案以跟踪网页,事件和其他内容,我想检查是否已包含ga.js库以避免双重包含,因为我在多个利益相关方的环境中工作它也使用谷歌分析,重叠是一种可能性。

首先,我想循环所有当前脚本,寻找src属性:

// load the Google Analytics library only if it has not been already loaded:
var gaScripts = 0; // number of ga.js scripts in the current document
var scripts = document.getElementsByTagName('script');

for (var i in scripts) {
    // go through all the scripts:
    if (typeof(scripts[i].src) !== 'undefined' && scripts[i].src.split('?')[0].match(/ga\.js$/)) {
        // update the counter if ga.js has been found:
        gaScripts++;
    }
}

if (gaScripts === 0) {
    (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();

    // update the counter:
    gaScripts++;

} else if (gaScripts > 1) {
    // the ga.js library has been loaded more than once, log this error:
    if (window.console) {
        console.log('Warning: the ga.js script has been included ' + gaScripts + ' times in the page');
    }
}

它可以工作,并且还记录多个包含的潜在错误。 然后我通过检查_gaq堆栈的对象原型来更聪明地思考:

with (window) {
    if (_gaq instanceof Array) {
        // not loaded, so include it...
    } else {
        // it's been included
    }
}

_gaq库仍然未被ga.js库初始化时,它是一个简单的数组,因此第一个条件为真。 初始化时,它会被覆盖为一个对象,而不再是Array原始对象的实例。

缺点

我想知道window.onload史诗问题:将解决方案实现为同步代码(在它所在的位置进行评估),如果ga.js库已包含但尚未加载到DOM中因为异步调用,无论如何都会产生双重包含。 因此,应触发DOMContentLoaded事件以在此期间调用两个解决方案中的一个。

我在网上搜索了有关此主题的类似问题,但官方的GA文档缺乏有关它的信息,热门资源的结果似乎都没有对它进行处理。

我向我提出的另一个问题是双重包含是一个问题:从纯粹的技术角度来看,我认为谷歌分析可以预测这种用户错误并对其进行管理,就像在某些情况下一样(有人知道是否有人知道)是这样吗?)。但是从用户的角度来看,第二个无用的HTTP请求的时间很烦人,希望可以避免。

是否有人遇到此问题或有任何建议?

1 个答案:

答案 0 :(得分:1)

尝试检查ga.js中定义的_gat对象。至于所有的时间和双重包含的问题,我认为没有能够两次包含它的功能性原因。这是额外的开销,但ga.js所做的就是提供一些函数来调用。

尝试使用双重包含,看看GA调试工具是否有任何关于它的说法: https://chrome.google.com/webstore/detail/jnkmfdileelhofjcijamephohjechhna