@@ -425,28 +425,18 @@ function $HttpProvider() {
425
425
*
426
426
*
427
427
* ## 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} —
429
429
* that is used to generate an HTTP request and returns a {@link ng.$q promise}.
430
430
*
431
431
* ```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) {
435
437
* // this callback will be called asynchronously
436
438
* // 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) {
450
440
* // called asynchronously if an error occurs
451
441
* // or server returns response with an error status.
452
442
* });
@@ -466,25 +456,16 @@ function $HttpProvider() {
466
456
* XMLHttpRequest will transparently follow it, meaning that the error callback will not be
467
457
* called for such responses.
468
458
*
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
- * ```
479
459
*
480
460
* ## Shortcut methods
481
461
*
482
462
* 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.
484
465
*
485
466
* ```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 );
488
469
* ```
489
470
*
490
471
* Complete list of shortcut methods:
@@ -498,6 +479,17 @@ function $HttpProvider() {
498
479
* - {@link ng.$http#patch $http.patch}
499
480
*
500
481
*
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
+ *
501
493
* ## Deprecation Notice
502
494
* <div class="alert alert-danger">
503
495
* The `$http` legacy promise methods `success` and `error` have been deprecated.
@@ -655,7 +647,7 @@ function $HttpProvider() {
655
647
*
656
648
* There are two kinds of interceptors (and two kinds of rejection interceptors):
657
649
*
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
659
651
* modify the `config` object or create a new one. The function needs to return the `config`
660
652
* object directly, or a promise containing the `config` or a new `config` object.
661
653
* * `requestError`: interceptor gets called when a previous interceptor threw an error or
0 commit comments