具有当前日期和时间的Google Analytics(分析)事件跟踪

时间:2018-06-25 09:31:59

标签: javascript angular google-analytics

我想通过传递参数当前日期和时间来跟踪事件,这有什么用吗? 我已经在angular 2中编写了以下代码 但没有显示任何相关的日期参数

//written in service file 
     googleEventTrack(eventCategory,eventLabel,eventAction,eventValue) 
     {
       (<any>window).ga('send', 'event', {
       eventCategory: eventCategory,
       eventLabel: eventLabel,
       eventAction: eventAction,
       eventValue: eventValue,
       eventDate:new Date()
      });
    }

//function call
      this.LanguageService.googleEventTrack('SubmoduleStatus', 'Module 2', 'username', 10);

0 个答案:

没有答案