如何将mixpanel与angular2集成

问题描述 投票:0回答:5

在index.html中,我添加了来自https://mixpanel.com/help/reference/javascript的mixpanel代码。

在我的

export class MixpanelService {

  constructor() {
    mixpanel.init("sdfsdf", '', "development");
  }

  public track() {
    mixpanel.track('click', {pageName:'login'})
  }
}

出现以下错误:

Cannot find name 'mixpanel'.
   mixpanel.init("sdfsdf", '', "development");

有人可以帮我解决这个问题吗?

javascript angular mixpanel
5个回答
14
投票

首先,安装 mixpanel for browser。这很重要。

npm install --save mixpanel-browser

安装相应的类型:

npm install --save @types/mixpanel

并将您的跟踪脚本添加到index.html without

mixpanel.init()
:

<!-- start Mixpanel -->
<script type="text/javascript">
    (function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
    for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f)}})(document,window.mixpanel||[]);
</script>
<!-- end Mixpanel -->

我强烈建议创建您自己的服务,这可以非常简单:

import { Injectable } from '@angular/core';
import * as mixpanel from 'mixpanel-browser';

@Injectable({
  providedIn: 'root'
})
export class MixpanelService {

  /**
   * Initialize mixpanel.
   *
   * @param userToken
   */
  init(userToken: string): void {
    mixpanel.init('your-project-token');
    mixpanel.identify(userToken);
  }

  /**
   * Push new action to mixpanel.
   *
   * @param id Name of the action to track.
   * @param [action={}] Actions object with custom properties.
   */
  track(id: string, action: any = {}): void {
    mixpanel.track(id, action);
  }
}

注意,我从 userAuthService 调用

init()
函数,但你可以做任何你想做的事情。只需确保在开始跟踪之前调用
init()

然后,在其余代码中,您可以使用:

constructor(private mixpanelService: MixpanelService) { }

someFunction() {
  this.mixpanelService.track('Some action', {
    customPropertyOne: 'customValueOne',
    customPropertyTwo: 'customValueTwo'
  });
}

5
投票
  • 在全局级别安装 Typings,这将帮助我们安装 JS 库的定义。 npm install -g 打字
  • 安装 mixpaneljs npm install mixpanel --save-dev
  • 运行以下命令将类型定义创建到typings.json中
    打字安装 dt~mixpanel --save --global

在您的 mixpanelService.ts 文件中

import * as Mixpanel from "mixpanel";

this.mixpanel = Mixpanel.default.init(token, properties);

4
投票

您必须在 index.html 中包含 mixpanel 脚本,但省略

mixpanel.init('token').

然后在 main.ts o app.component.ts 中,您可以将 mixpanel 库声明为变量:

import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
declare const mixpanel: any;

if (environment.production) {
  enableProdMode();
}

mixpanel.init(environment.mixpanel.apikey);
platformBrowserDynamic().bootstrapModule(AppModule);

我使用多个 Mixpanel 项目来避免将开发数据与产品数据混淆。


0
投票

另一个不错的选择是angulartics2。它支持 MixPanel 和其他跟踪服务。


-1
投票

希望这有效。

如果您按照 Mixpanel.com 页面提供的说明进行操作,则应将大片段粘贴到应用程序的 index.html 中的“Head”标记之间。

现在,仔细检查脚本的最后一部分 mixpanel.init("TOKEN");被您项目中的替换。 通过单击齿轮图标(在报告或 Mixpanel 的 <> 页面中)确保这一点,然后单击“管理”选项卡并复制粘贴“令牌”代码,然后将其替换为您在索引中复制的代码.html。如果您不是项目的所有者,您可以在同一位置单击“邀请人员”,然后按照相同的步骤操作。

现在,要跟踪某些内容,比如说,每次有人进入登陆页面时,您都可以粘贴此代码:

    <script type="text/javascript">
     mixpanel.track("Page Loaded", { "Page Name": "Landing Page"});
    </script>

在“身体”标签之间。

保存所有更改,加载网络应用程序(npm start / npm run / ngserve,如果你愿意的话) 然后转到(或重新加载)mixpanel.com 页面,单击实时视图选项卡,神奇的事情就会发生。

希望有效!

© www.soinside.com 2019 - 2024. All rights reserved.