Improve this Doc  View Source

angular.errorHandlingConfig

  1. - function in module ng

Overview

Configure several aspects of error handling in AngularJS if used as a setter or return the current configuration if used as a getter. The following options are supported:

Omitted or undefined options will leave the corresponding configuration values unchanged.

Usage

angular.errorHandlingConfig([config]);

Arguments

Param Type Details
config
(optional)
Object

The configuration object. May only contain the options that need to be updated. Supported keys:

  • objectMaxDepth {Number} - The max depth for stringifying objects. Setting to a non-positive or non-numeric value, removes the max depth limit. Default: 5

  • urlErrorParamsEnabled {Boolean} - Specifies whether the generated error url will contain the parameters of the thrown error. Disabling the parameters can be useful if the generated error url is very long.

    Default: true. When used without argument, it returns the current value.