-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$routeProvider.when() ignores inherited properties on route argument #8181
Comments
Also, just to state my use case for this, if I have a lot of routes that share some information, my idea was to define those routes as inheriting from a base route. Otherwise, one needs to copy the base route for each route. |
This is because
if you go the route of doing
then why not do this instead:
or even better:
But I do agree that we should either update the docs or change the code. The change should be fairly small, so it might make more sense to just make it and be done with it. |
if you'd like to make the change + add a test, we'll merge it in. |
Thanks, yes, that's more or less what I wound up doing. Ideally, I think the code should be changed. But is there an efficient way to copy the properties that result from proto-inheritance? Alternatively, One more thing: given that you say |
copy route params with angular.copy before using angular.extend which looks only for enumerable own properties Closes angular#8181
copy route params with angular.copy before using angular.extend which looks only for enumerable own properties Closes angular#8181
copy route params with angular.copy before using angular.extend which looks only for enumerable own properties Closes angular#8181
copy route params with angular.copy before using angular.extend which looks only for enumerable own properties Closes angular#8181
The
$routeProvider
only seems to notice properties on theroute
parameter to$routeProvider.when(path, route)
when those properties are own properties. It doesn't seem to pick up properties on theroute
object that are inherited properties (i.e. properties coming from prototypal inheritance).I believe this is because the implementation of
when()
in the source code callsangular.extend()
with theroute
as one of the sources, andangular.extend()
only seems to copy own properties and not inherited properties of the sources.If this limitation is deliberate, it should probably be in the documentation of the
route
parameter towhen()
.The text was updated successfully, but these errors were encountered: