Ionic 1

2019-02-20 16:10 更新

Ionic 1使用了AngularJS 1,因此與其配置方法一致。

1. 接入插件

修改www/index.html,將fundebug.min.js放在head標(biāo)簽中;也可以使用NPM、RequireJS動(dòng)態(tài)加載等其他方式接入。

2. 配置exceptionHandler

修改www/js/app.js

// 在exceptionHandler中調(diào)用fundebug.notifyError
angular
  .module('exceptionOverwrite', [])
  .factory('$exceptionHandler', function()
  {
    return function(exception, cause)
    {
      fundebug.notifyError(exception);
    };
  });

// exceptionOverwrite添加到模塊依賴中
angular.module('myApp', [
    ...,
    ...,
    'exceptionOverwrite'
])
參考


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)