-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$http no longer accepts "string-like" URLs #14557
Comments
Some downsides to the above approach:
|
It's documented that http only accepts strings in the url. So I don't think we should now start to support objects with toString functions. |
Agree with @Narretz the change that you point to only enforces something as it is specified in the documentation. |
I disagree. Given that JavaScript is a dynamically-typed language, when an API document states that a method accepts a string, a developer can typically expect that the method can safely accept a string, or any other value that can be safely coerced to a string, unless the documentation specifically notes that the library performs an explicit type-check. To pick one very obvious example, most of Angular's API methods that accept boolean values will happily accept any truthy or falsy values. Very few other By introducing this change, Angular broke a contract about how developers expect a dynamically-typed language to work. While the change is technically consistent with the existing documentation, it is not consistent with how similarly-documented functions in Angular behave. Finally, I would argue that the rationale for introducing this change (displaying a helpful error message when a developer passes in an obviously-invalid URL) does not appear to have been actually satisfied by the changes that were introduced, nor is the stated rationale sufficient for breaking existing usages of the library (without explicitly noting it as a breaking change). |
Workaround for anybody stumbling across this page: $provide.decorator('$http', function($delegate){
var newHttp = function(cfg){
if(cfg.url instanceof Object){
cfg.url = cfg.url.toString();
}
return $delegate(cfg);
};
angular.extend(newHttp, $delegate);
angular.forEach(['get', 'delete', 'head', 'jsonp'], function(method){
newHttp[method] = function(url, cfg){
return newHttp(angular.extend({}, cfg || {}, {
method: method,
url: url
}));
};
});
return newHttp;
}); |
Since Angular 1.4.9, the
$http
service only accepts pure strings as URLs. If I pass in an object that has atoString()
method,$http
raises an exception:This is a departure from Angular's pre-1.4.9 behavior, jQuery, and XMLHttpRequest; all of which accept (and correctly interpret) the
url
object described above. This behavior was introduced in 6628b4f to fix #12925, and merged in #13444.I would recommend relaxing this restriction slightly, and allow objects with a
toString()
method to be used as URLs.The relevant portion of
$http
's source currently looks like:I would recommend changing it to something like this:
While this would result in a less-satisfactory fix for #12925 (we might throw a less descriptive error in some cases), the behavior would also be more correct.
If this looks good, I can write up a PR.
The text was updated successfully, but these errors were encountered: