This is a whitelist of the Angular services that you can inject as dependencies into your components (controller, services, etc.).
Name | Description |
---|---|
$anchorScroll |
When called, it checks current value of |
$cookies |
Provides read/write access to browser's cookies. |
$cookieStore |
Provides a key-value (string-object) storage, that is backed by session cookies. Objects put or retrieved from this storage are automatically serialized or deserialized by angular's toJson/fromJson. |
$filter |
Filters are used for formatting data displayed to the user. |
$http |
The |
$interpolate |
Compiles a string with markup into an interpolation function. This service is used by the HTML $compile service for data binding. See $interpolateProvider for configuring the interpolation markup. |
$interval |
Angular's wrapper for |
$locale |
$locale service provides localization rules for various Angular components. |
$location |
The $location service parses the URL in the browser address bar (based on the window.location) and makes the URL available to your application. Changes to the URL in the address bar are reflected into $location service and changes to $location are reflected into the browser address bar. |
$log | Simple service for logging. Default implementation safely writes the message into the browser's console (if present). |
$parse | Converts Angular expression into a function. |
$q | A promise/deferred implementation inspired by Kris Kowal's Q. |
$routeParams |
The |
$timeout |
Angular's wrapper for |
This is a list of partially supported angular services that can be injected into plugins. Only the methods listed here are allowed. All other methods and properties are not implemented.
Name | Description |
---|---|
$templateCache |
The way to access angular templates programmatically. The |
$window |
The only way to access the browser For the |