gpt4 book ai didi

angularjs - Angular-google-analytics 缺少跟踪代码

转载 作者:行者123 更新时间:2023-12-02 04:49:24 24 4
gpt4 key购买 nike

我正在使用“angular-google-analytics”( https://github.com/revolunet/angular-google-analytics )。

您可以在下面找到我使用的配置。

我收到 Analytics 通知 - “缺少跟踪代码”。可能我做错了什么......

有人可以建议一下,可能出了什么问题吗?

angular.module('myModule', ['angular-google-analytics']);

.....
// The configuration is as below
AnalyticsProvider.logAllCalls(true).startOffline(true).useECommerce(true, true);
AnalyticsProvider.setAccount('UA-XXXXXXX-1');
AnalyticsProvider.setDomainName('mywebsite.net'); AnalyticsProvider.setHybridMobileSupport(true);

.....

// in Controllers, Analytics is injected as below
function UserItemsController($scope, $rootScope, Analytics) {
....

Analytics.trackPage('/user/' + $scope.currentUserName);
Analytics.pageView();
}

最佳答案

此问题已解决。我想在这里分享解决方案,也许有人会觉得有用。

为了解决该问题,我已将下一个脚本(由 google 提供)添加到我的代码中。请注意,“angular-google-analytics”的文档中没有提到必须添加代码,这可能会非常困惑。

<script>
(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-xxxxxxxxx-1', 'auto');
ga('send', 'pageview');

</script>

关于angularjs - Angular-google-analytics 缺少跟踪代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38615734/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com