gpt4 book ai didi

ionic-framework - 在 Ionic 2 中实现 Google Analytics 时出错

转载 作者:行者123 更新时间:2023-12-04 07:04:34 27 4
gpt4 key购买 nike

尝试将 Google Analytics ( http://ionicframework.com/docs/v2/native/google-analytics/ ) 集成到我的应用程序中,请按照本教程进行操作,因为文档实际上没有任何类型的实现说明:https://www.thepolyglotdeveloper.com/2016/03/use-google-analytics-in-an-ionic-2-android-and-ios-app/

但是,当我在模拟器中运行我的应用程序时,我在编译时遇到了以下错误:

TypeScript 错误:app/app.ts(21,14):错误 TS2339:属性“analytics”在类型“Window”上不存在。

有什么想法吗?

最佳答案

您使用的示例未使用 typescript 或 ionic-native module .

这是一个你可以看看的项目https://github.com/aaronksaunders/GAProject

app.ts

从'ionic-native'导入{StatusBar, GoogleAnalytics};

你也应该这样访问模块

import {Component} from '@angular/core';
import {Platform, ionicBootstrap} from 'ionic-angular';
import {StatusBar, GoogleAnalytics} from 'ionic-native';
import {HomePage} from './pages/home/home';


@Component({
template: '<ion-nav [root]="rootPage"></ion-nav>'
})
export class MyApp {
rootPage: any = HomePage;

constructor(platform: Platform) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
StatusBar.styleDefault();

// google
GoogleAnalytics.debugMode()
GoogleAnalytics.startTrackerWithId("YOUR_GOOGLE_ID");

GoogleAnalytics.enableUncaughtExceptionReporting(true)
.then((_success) => {
console.log(_success)
}).catch((_error) => {
console.log(_error)
})

});
}
}

关于ionic-framework - 在 Ionic 2 中实现 Google Analytics 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38104609/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com