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

Commit e9b9421

Browse files
Dustinchirayuk
Dustin
authored andcommitted
fix ($http): throw error when string URL is provided
1 parent 7a37469 commit e9b9421

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

docs/content/error/$http/badreq.ngdoc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@ngdoc error
2+
@name $http:badreq
3+
@fullName Bad Request Configuration
4+
@description
5+
6+
This error occurs when the request configuration parameter passed to the {@link ng.$http `$http`} service is not an object.  `$http` expects a single parameter, the request configuration object, but received a parameter that was not an object.  The error message should provide additional context such as the actual value of the parameter that was received.  If you passed a string parameter, perhaps you meant to call one of the shorthand methods on `$http` such as `$http.get(…)`, etc.
7+
8+
To resolve this error, make sure you pass a valid request configuration object to `$http`.
9+
10+
For more information, see the {@link ng.$http `$http`} service API documentation.

src/ng/http.js

+4
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,10 @@ function $HttpProvider() {
743743
};
744744
var headers = mergeHeaders(requestConfig);
745745

746+
if (!angular.isObject(requestConfig)) {
747+
throw minErr('$http')('badreq', 'Http request configuration must be an object. Received: {0}', requestConfig);
748+
}
749+
746750
extend(config, requestConfig);
747751
config.headers = headers;
748752
config.method = uppercase(config.method);

test/ng/httpSpec.js

+6
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,12 @@ describe('$http', function() {
285285
$http = $h;
286286
}]));
287287

288+
it('should throw error if the request configuration is not an object', inject(function($httpBackend, $http) {
289+
expect(function() {
290+
$http('/url');
291+
}).toThrowMinErr('$http','badreq', 'Http request configuration must be an object. Received: /url');
292+
}));
293+
288294
it('should send GET requests if no method specified', inject(function($httpBackend, $http) {
289295
$httpBackend.expect('GET', '/url').respond('');
290296
$http({url: '/url'});

0 commit comments

Comments
 (0)