我的代码在我的网页上使用Google Analytics的cookie来装饰网址。
var tracker = window[window.GoogleAnalyticsObject].getAll()[0];
new window.gaplugins.Linker(tracker).decorate("http://www.toto.com");
发生错误:
window [window.GoogleAnalyticsObject] .getAll不是函数
window.gaplugins未定义
就像Google Analytics异步加载其插件一样,我想象getAll()
和gaplugins.linker
函数尚未声明。
我等不及DOM了,所以我想强制同时加载GA插件。
感谢您的帮助
答案 0 :(得分:1)
最好的选择是使用回调函数来执行代码,而不是强制它同步执行。
像这样:
(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");
})
答案 1 :(得分:0)
使用文档here(参阅Eduardo评论),我们可以向子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
});
});