mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
29 lines
1.7 KiB
Text
29 lines
1.7 KiB
Text
@workInProgress
|
|
@ngdoc overview
|
|
@name angular.service
|
|
@description
|
|
|
|
The services API provides objects for carrying out common web app tasks. Service objects are
|
|
managed by angular's {@link guide/dev_guide.di dependency injection system}.
|
|
|
|
* {@link angular.service.$browser $browser } - Provides an instance of a browser object
|
|
* {@link angular.service.$cookieStore $cookieStore } - Provides key / value storage backed by
|
|
session cookies
|
|
* {@link angular.service.$cookies $cookies } - Provides read / write access to browser cookies
|
|
* {@link angular.service.$defer $defer } - Defers function execution and try / catch block
|
|
* {@link angular.service.$document $document } - Provides reference to `window.document` element
|
|
* {@link angular.service.$exceptionHandler $exceptionHandler } - Receives uncaught angular
|
|
exceptions
|
|
* {@link angular.service.$hover $hover } -
|
|
* {@link angular.service.$invalidWidgets $invalidWidgets } - Holds references to invalid widgets
|
|
* {@link angular.service.$location $location } - Parses the browser location URL
|
|
* {@link angular.service.$log $log } - Provides logging service
|
|
* {@link angular.service.$resource $resource } - Creates objects for interacting with RESTful
|
|
server-side data sources
|
|
* {@link angular.service.$route $route } - Provides deep-linking services
|
|
* {@link angular.service.$updateView $updateView } - Queues view updates
|
|
* {@link angular.service.$window $window } - References the browsers `window` object
|
|
* {@link angular.service.$xhr $xhr} - Generates an XHR request.
|
|
|
|
For information on how angular services work and how to write your own services, see {@link
|
|
guide/dev_guide.services Angular Services} in the angular Developer Guide.
|