$http.delete()

delete(url, [config]); Shortcut method to perform DELETE request. Parameters Param Type Details url string Relative or absolute URL specifying the destination of the request config (optional) Object Optional configuration object Returns HttpPromise Future object

$http.patch()

patch(url, data, [config]); Shortcut method to perform PATCH request. Parameters Param Type Details url string Relative or absolute URL specifying the destination of the request data * Request content config (optional) Object Optional configuration object Returns HttpPromise Future object

$http.defaults

defaults Runtime equivalent of the $httpProvider.defaults property. Allows configuration of default headers, withCredentials as well as request and response transformations. See "Setting HTTP Headers" and "Transforming Requests and Responses" sections above.

$filterProvider

$filter provider in module ng Filters are just functions which transform input to an output. However filters need to be Dependency Injected. To achieve this a filter definition consists of a factory function which is annotated with dependencies and is responsible for creating a filter function. Note: Filter names must be valid angular Expressions identifiers, such as uppercase or orderBy. Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace

$filterProvider.register()

register(name, factory); Parameters Param Type Details name stringObject Name of the filter function, or an object map of filters where the keys are the filter names and the values are the filter factories. Note: Filter names must be valid angular Expressions identifiers, such as uppercase or orderBy. Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace your filters, then you can use capitalization (myappSubsectionFilterx) or underscores (myap

$exceptionHandler

service in module ng Any uncaught exception in angular expressions is delegated to this service. The default implementation simply delegates to $log.error which logs it into the browser console. In unit tests, if angular-mocks.js is loaded, this service is overridden by mock $exceptionHandler which aids in testing. Example: angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { return function(exception, cause) { exception.message += ' (caused by "' + cause

$controllerProvider.register()

register(name, constructor); Parameters Param Type Details name stringObject Controller name, or an object map of controllers where the keys are the names and the values are the constructors. constructor function()Array Controller constructor fn (optionally decorated with DI annotations in the array notation).

$filter

$filterProvider service in module ng Filters are used for formatting data displayed to the user. The general syntax in templates is as follows: {{ expression [| filter_name[:parameter_value] ... ] }} Usage $filter(name); Arguments Param Type Details name String Name of the filter function to retrieve Returns Function the filter function

$document

service in module ng A jQuery or jqLite wrapper for the browser's window.document object. Dependencies $window

$controllerProvider.has()

has(name); Parameters Param Type Details name string Controller name to check.