离子骨架中的GAPlugin

时间:2016-02-22 08:41:07

标签: google-analytics ionic-framework phonegap-plugins

我正在尝试构建一个使用GAPlugin的离子项目,但我的代码在index.html中是这样的:

var gaPlugin; // Google analytics stuff

    if(( /(ipad|iphone|ipod|android|windows phone)/i.test(navigator.userAgent) )) {
      alert('hello world! this is a device');
     document.addEventListener('deviceready', initApp, false);
   } else {
      alert('hello world! this is NOT a device');
     initApp();
   }

 /**
  * init google analytics
 */
 function initApp() {

   // Init google analytics
   gaPlugin = window.plugins.gaPlugin;
   gaPlugin.init(onGASuccess, onGAError, "UA-x-x", 10);  // replace UA-x-x with your Tracking ID
 }

我正在尝试在我的离子项目中添加Google Analytics,并且我包含了GAPlugin,但是我收到了此错误:

Uncaught TypeError: Cannot read property 'exec' of undefined

任何人都知道可能是什么问题?

0 个答案:

没有答案