我可以毫无问题地跟踪我的网络广告系列,例如:
ga('set', 'campaignSource', 'WebApp');
ga('set', 'campaignMedium', 'WebApp');
但是在 Ionic 中,当我像下面这样集成时,我可以看到活跃用户,但看不到活动名称。
this.ga.startTrackerWithId(this.singleton.googleAnalyticsTrackId)
.then(() => {
console.log('Google analytics is ready now');
this.ga.trackView('mobile');
this.ga.setVar('campaignMedium','mobile').then(d=>console.log(d));
this.ga.setVar('campaignSource','mobile').then(d=>console.log(d));
})
.catch(e => console.log('Error starting GoogleAnalytics', e));
有什么建议或解决方案吗?