Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8c618d8

Browse files
committed
docs($http): link to usage where config is mentioned; make drier
Linking to usage section makes it easier for beginners to find out what the config object looks like. The General Usage section now features an example that actually uses $http(config), and the Shortcut Methods section has been moved so that it appears directly after. Closes #12949 Closes #12950
1 parent 68d4dc5 commit 8c618d8

File tree

1 file changed

+23
-31
lines changed

1 file changed

+23
-31
lines changed

src/ng/http.js

+23-31
Original file line numberDiff line numberDiff line change
@@ -425,28 +425,18 @@ function $HttpProvider() {
425425
*
426426
*
427427
* ## General usage
428-
* The `$http` service is a function which takes a single argument — a configuration object —
428+
* The `$http` service is a function which takes a single argument — a {@link $http#usage configuration object}
429429
* that is used to generate an HTTP request and returns a {@link ng.$q promise}.
430430
*
431431
* ```js
432-
* // Simple GET request example :
433-
* $http.get('/someUrl').
434-
* then(function(response) {
432+
* // Simple GET request example:
433+
* $http({
434+
* method: 'GET',
435+
* url: '/someUrl'
436+
* }).then(function successCallback(response) {
435437
* // this callback will be called asynchronously
436438
* // when the response is available
437-
* }, function(response) {
438-
* // called asynchronously if an error occurs
439-
* // or server returns response with an error status.
440-
* });
441-
* ```
442-
*
443-
* ```js
444-
* // Simple POST request example (passing data) :
445-
* $http.post('/someUrl', {msg:'hello word!'}).
446-
* then(function(response) {
447-
* // this callback will be called asynchronously
448-
* // when the response is available
449-
* }, function(response) {
439+
* }, function errorCallback(response) {
450440
* // called asynchronously if an error occurs
451441
* // or server returns response with an error status.
452442
* });
@@ -466,25 +456,16 @@ function $HttpProvider() {
466456
* XMLHttpRequest will transparently follow it, meaning that the error callback will not be
467457
* called for such responses.
468458
*
469-
* ## Writing Unit Tests that use $http
470-
* When unit testing (using {@link ngMock ngMock}), it is necessary to call
471-
* {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending
472-
* request using trained responses.
473-
*
474-
* ```
475-
* $httpBackend.expectGET(...);
476-
* $http.get(...);
477-
* $httpBackend.flush();
478-
* ```
479459
*
480460
* ## Shortcut methods
481461
*
482462
* Shortcut methods are also available. All shortcut methods require passing in the URL, and
483-
* request data must be passed in for POST/PUT requests.
463+
* request data must be passed in for POST/PUT requests. An optional config can be passed as the
464+
* last argument.
484465
*
485466
* ```js
486-
* $http.get('/someUrl').then(successCallback);
487-
* $http.post('/someUrl', data).then(successCallback);
467+
* $http.get('/someUrl', config).then(successCallback, errorCallback);
468+
* $http.post('/someUrl', data, config).then(successCallback, errorCallback);
488469
* ```
489470
*
490471
* Complete list of shortcut methods:
@@ -498,6 +479,17 @@ function $HttpProvider() {
498479
* - {@link ng.$http#patch $http.patch}
499480
*
500481
*
482+
* ## Writing Unit Tests that use $http
483+
* When unit testing (using {@link ngMock ngMock}), it is necessary to call
484+
* {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending
485+
* request using trained responses.
486+
*
487+
* ```
488+
* $httpBackend.expectGET(...);
489+
* $http.get(...);
490+
* $httpBackend.flush();
491+
* ```
492+
*
501493
* ## Deprecation Notice
502494
* <div class="alert alert-danger">
503495
* The `$http` legacy promise methods `success` and `error` have been deprecated.
@@ -655,7 +647,7 @@ function $HttpProvider() {
655647
*
656648
* There are two kinds of interceptors (and two kinds of rejection interceptors):
657649
*
658-
* * `request`: interceptors get called with a http `config` object. The function is free to
650+
* * `request`: interceptors get called with a http {@link $http#usage config} object. The function is free to
659651
* modify the `config` object or create a new one. The function needs to return the `config`
660652
* object directly, or a promise containing the `config` or a new `config` object.
661653
* * `requestError`: interceptor gets called when a previous interceptor threw an error or

0 commit comments

Comments
 (0)