The example below will overwrite the default $exceptionHandler in order to (a) log uncaught errors to the backend for later inspection by the developers and (b) to use $log.warn() instead of $log.error().
By using this $exceptionHandler the errors will display clear,
angular.module('test').factory('$exceptionHandler', function() { return function(exception, cause) { exception.message += 'Angular Exception: "' + cause + '"'; throw exception; }; } );
You might also like:
How to submit form using javascript or jquery.16-04-2017 javascript jquery submit form |
How to use http-post request in node js14-03-2017 http-post module node js |
How to make an http request in node js14-03-2017 http module node js |
Convert Time 24 hrs to 12 hrs format In javascript12-03-2017 date javascript 12hrs convert |
Call a function every second or 5 seconds in javascript22-02-2017 setinterval function calling |