我正在尝试通过谷歌分析跟踪我的页面,这是我的代码
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XXXXXXXXXX']);
_gaq.push(['_setDomainName', 'somesite.com']);
_gaq.push(['_trackPageview']);
(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);
})();
(function ($) {
// Log all jQuery AJAX requests to Google Analytics
$(document).bind('ajaxComplete', function(event, xhr, settings){
console.log('ajax Request');
console.log(settings.url);
_gaq.push(['_trackPageview', settings.url]);
});
})(jQuery);
在每个 ajax 请求上,我都可以看到控制台有值
ajax Request
url of the page
这意味着 _gap.push 正在工作(因为页面上没有 js 错误)。但是当我通过 Live HttpHeaders 检查我的 req/res 时,谷歌分析没有 req/res,如何跟踪它?
这是萤火虫中的屏幕截图