我正在尝试在我的 AngularJS SPA 中使用angulartics和Google Analytics,这样即使当用户在应用程序中时构造的 URL 是唯一的,我也能够聚合页面浏览量。当用户从一个页面移动到另一个页面(以及从一个状态到另一个状态)时,URL 将继续建立在其自身之上,包括 GUID。请参阅下面的示例:
- 第 1 页:localhost:9000/selectListing
- 第 2 页: localhost:9000/34ea85a0-84db-4443-b40b-f7e0b6b0b096/selectFiles
- 第 3 页: localhost:9000/34ea85a0-84db-4443-b40b-f7e0b6b0b096/addUser/ceb1639a-1ba4-4f09-a175-474bea0fe3bf
当我在谷歌分析上查看这些信息时,每次用户在实时页面视图列表下的 selectFiles 页面上时,我都会看到一个唯一的 URL。例如:
- 本地主机:9000/34ea85a0-84db-4443-b40b-f7e0b6b0b096/selectFiles
- 本地主机:9000/0c006d26-bff4-43da-aaee-d332f92b05db/selectFiles
我只想看到它被聚合,以便在 /selectFiles 页面上有一个用户计数
这是我的 index.html 文件中的谷歌分析代码:
if (window.location.host.indexOf('cats.kittens.com') >=0){
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-5555555-5', 'auto');
$window.ga('send', 'pageview', { page: $location.url() });
这是我在 app.js 文件中实现的代码:
angular.module('myApp', [
'ui.router', 'ui.bootstrap', 'ui.bootstrap.tpls', 'ngTable', 'ngSanitize', 'angularFileUpload','angular.filter', 'angulartics', 'angulartics.google.analytics',
])
/* Angulartics configuration */
.config(['$analyticsProvider', function ($analyticsProvider) {
$analyticsProvider.firstPageview(false); /* Records pages that don't use $state or $route */
$analyticsProvider.withAutoBase(true); /* Records full path */
}])
.config(['$stateProvider', '$urlRouterProvider', '$logProvider', function ($stateProvider, $urlRouterProvider, $logProvider) {
'use strict';
// global $log.debug setting
$logProvider.debugEnabled(true);
}]);
我已经用谷歌分析和 ui-router 尝试了这个解决方案,但没有成功:http ://www.arnaldocapo.com/blog/post/google-analytics-and-angularjs-with-ui-router/72
请让我知道我可以尝试的其他任何事情。提前致谢!