禁用异步 Google 分析加载

Disable async Google Analytics loading

我的网页中有这段代码用 Analytics 的 cookie 装饰 url。

var tracker = window[window.GoogleAnalyticsObject].getAll()[0];
new window.gaplugins.Linker(tracker).decorate("http://www.toto.com");

这发生了一个错误:

window[window.GoogleAnalyticsObject].getAll is not a function

window.gaplugins is undefined

就像 Google Analytics 异步加载它的插件一样,我想 getAll()gaplugins.linker 函数还没有声明。 我等不及 DOM 准备好了,所以我想强制同步加载 GA 插件。

感谢您的帮助

最好的选择是使用回调函数来执行您的代码,而不是强制它同步执行。

像这样:

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXXXX-1', 'auto');
ga('send', 'pageview');
ga(function(){
  // Code in here will only run after ga is loaded.
  window.tracker = window[window.GoogleAnalyticsObject].getAll()[0];
  new window.gaplugins.Linker(tracker).decorate("http://www.toto.com");
})

使用文档 here(参见 Eduardo 评论),我们可以 Post 向子 iframe 发送消息:

 <iframe id="destination-frame" src="https://destination.com"></iframe>
 <script>
      ga('create', 'UA-XXXXX-Y', 'auto');
      ga(function(tracker) {
           // Gets the client ID of the default tracker.
           var clientId = tracker.get('clientId');

           // Gets a reference to the window object of the destionation iframe.
           var frameWindow = document.getElementById('destination-frame').contentWindow;
           // Sends the client ID to the window inside the destination frame.
           frameWindow.postMessage(clientId, 'https://destination.com');
      });
 </script>

在 iframe 端:

 window.addEventListener('message', function(event) {
      // Ignores messages from untrusted domains.
      if (event.origin != 'https://destination.com') return;
      ga('create', 'UA-XXXXX-Y', 'auto', {
           clientId: event.data
      });
 });