codecamp

Angular 2

1. 安装fundebug-javascript
npm install fundebug-javascript --save
2. 接入插件

修改app.module.ts

import { ErrorHandler } from '@angular/core';
var fundebug: any = require("fundebug-javascript");
fundebug.apikey = 'API-KEY';

// 定义FundebugErrorHandler
export class FundebugErrorHandler implements ErrorHandler {
   handleError(err:any) : void {
     fundebug.notifyError(err);
   }
}

// 使用FundebugErrorHandler
@NgModule({
   // 其他代码
   providers: [ { provide: ErrorHandler, useClass: FundebugErrorHandler } ]
 })

其中,获取apikey需要免费注册帐号并且创建项目

参考
SystemJS

如果您使用SystemJS, 那么需要为fundebug-javascript需要配置相应的路径才能成功。

System.config({
 paths: {
      // paths serve as alias
      'npm:': 'node_modules/'
    },
    // map tells the System loader where to look for things
    map: {
      /* ... 其他配置 ...*/

      // other libraries
      /* ... 其他配置 ...*/
      'fundebug-javascript': 'npm:fundebug-javascript/release/fundebug.x.x.x.min.js'
    }, 
});

注意: fundebug.x.x.x.min.js中的x.x.x要改为插件的版本号,例如fundebug.0.3.1.min.js。


AngularJS 1
Angular 4
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

接入插件

NPM

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }