我正在尝试构建一个使用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
任何人都知道可能是什么问题?