可以从$ window.onerror中捕获Angular应用程序中的JavaScript错误

时间:2015-01-05 15:46:50

标签: javascript angularjs onerror

在我的app.module()。run()中,我设置了一条onerror消息,以便在遇到javascript错误时弹出toastr消息。

我希望这能在整个ngApp中运行。这可能吗?

以下代码弹出一个toast,因为asdf是无效的JavaScript。

angular.module("app").run(['notificationFactory', '$window',
    function (notificationFactory, $window) {
    $window.onerror = function (errorMsg, url, lineNumber) {
        notificationFactory.error(errorMsg);
   };

   asdf
}]);

但如果我把'asdf'进入一个控制器,$ window.onerror没有开火。

是否可以通过全局的错误调用来捕获它?

App.run位于我的app.js文件中,并在我的控制器之前加载。

在我的控制器中,我似乎无法让$ window.onerror工作。我尝试将onerror函数移动到控制器。我还试图看看img标签是否会产生错误无效。

<img ng-src="someFileThatDoesntExist.png" />

2 个答案:

答案 0 :(得分:12)

您可以装饰$ exceptionHandler提供程序。请尝试以下;

(function () {
    'use strict';

var app = angular.module('myApp');

// Configure by setting an optional string value for appErrorPrefix.
// Accessible via config.appErrorPrefix ().

app.config(['$provide', function ($provide) {
    $provide.decorator('$exceptionHandler',
        ['$delegate', 'notificationFactory', extendExceptionHandler]);
}]);

// Extend the $exceptionHandler service to also display a toast.
function extendExceptionHandler($delegate, notificationFactory) {
    var appErrorPrefix = 'myPrefix';
    return function (exception, cause) {
        $delegate(exception, cause);
        if (appErrorPrefix && exception.message.indexOf(appErrorPrefix) === 0) { return; }

        var errorData = { exception: exception, cause: cause };
        var msg = appErrorPrefix + exception.message;
        notificationFactory.error(msg);
        console.log(appErrorPrefix, errorData)
    };
}
})();

答案 1 :(得分:1)

window.onerror事件不会从控制台错误中触发。以下是如何从控制台手动触发window.onerror事件:

setTimeout(function() { notThere(); }, 0);