我使用google-analytics-plugin将google analytics与离子1连接起来。
在app.js中,
/* Google Analytics */
if(typeof analytics !== undefined) {
analytics.startTrackerWithId("UA-XXXXXXXXX-X");
console.log("Connected Google Analytics");
} else {
console.log("Google Analytics Unavailable");
}
在controller.js中,我无法呼叫分析'直接,所以我打电话给'eventListener'。
.controller('LoginCtrl', function($scope) {
document.addEventListener("deviceready", function () {
if(typeof analytics !== undefined) {
analytics.trackView("Login");
}
}, false);
}
.controller('PlaylistsCtrl', function($scope) {
document.addEventListener("deviceready", function () {
if(typeof analytics !== undefined) {
analytics.trackView("PlaylistsCtrl");
}
}, false);
}
它与GoogleAnalytics相关联,但不显示综合浏览量标题。计数增加但显示两个控制器作为同一页面。
任何人都可以告诉我应该如何修复以显示网页浏览标题? 提前谢谢!
答案 0 :(得分:0)
尝试使用以下内容显示页面标题
window.ga.trackView(pagename);