在ion4应用程序中使用web-sdk插件



我有一个问题。我想在我的离子应用中使用这个sdk:https://support.count.ly/hc/en-us/articles/360037441932-Web-analytics-JavaScript-#using-webview中的websdk。我使用离子版本4,所以我不能使用他们的插件,因为它只与离子2兼容。问题是我如何在我的组件中使用这个插件?到目前为止我所做的:

1. npm install countly-sdk-web
2. I modified index.html file to add the init :
<script type='text/javascript'>
// Some default pre init
var Countly = Countly || {};
Countly.q = Countly.q || [];
// Provide your app key that you retrieved from Countly dashboard
Countly.app_key = "111";
// Provide your server IP or name. Use try.count.ly or us-try.count.ly
// or asia-try.count.ly for EE trial server.
// If you use your own server, make sure you have https enabled if you use
// https below.
Countly.url = "https://try.count.ly";
// Start pushing function calls to queue
// Track sessions automatically (recommended)
Countly.q.push(['track_sessions']);
//track web page views automatically (recommended)
Countly.q.push(['track_pageview']);
// Load Countly script asynchronously
(function() {
var cly = document.createElement('script'); cly.type = 'text/javascript';
cly.async = true;
// Enter url of script here (see below for other option)
cly.src = 'https://cdn.jsdelivr.net/npm/countly-sdk-web@latest/lib/countly.min.js';
cly.onload = function(){Countly.init()};
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(cly, s);
})();

没有错误,因此启动了sdk。但不知道如何在.component.ts上使用。有什么想法吗?Thx提前

我是Countly的开发人员之一。

您是否希望在Ionic应用程序中使用web SDK?它的主要用途是网页,而不是移动应用程序。

对于Ionic移动(Android和iOS(应用程序,我们推荐我们的";Cordova SDK";。

为了更好地了解如何在您的应用程序中使用我们的SDK,请查看我们的文档和示例应用程序。

最新更新