This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat: warn when passing a string to $routeProvider.otherwise() #7794
Milestone
Comments
I think it should not accept strings and only accept a key/value object. Aliasing it wouldn't do much help to reduce the amount of typing since |
I'm taking a look at having $routeProvider.otherwise throw an error if passed a string. |
ui-router lets you pass a string to "otherwise", and it's a very nice API. I'm more in favour of just making it redirect by default if the first param is a string... (https://github.com/angular-ui/ui-router/blob/master/src/urlRouter.js#L102-L106) --- since it's a pretty elegant api that way, and the most common use case is really creating an object with just |
ealtenho
pushed a commit
to ealtenho/angular.js
that referenced
this issue
Jun 12, 2014
Allow .otherwise() to interpret a string parameter as the redirectTo property to handle the common misinterpretation that .otherwise() takes as a parameter the string to be matched in the otherwise case. Closes angular#7794
I'm all for it, +1 @ealtenho |
btford
pushed a commit
to btford/angular.js
that referenced
this issue
Aug 28, 2014
Allow .otherwise() to interpret a string parameter as the redirectTo property to handle the common misinterpretation that .otherwise() takes as a parameter the string to be matched in the otherwise case. Closes angular#7794
Closed in 3b5d75c. |
btford
pushed a commit
that referenced
this issue
Aug 28, 2014
Allow `.otherwise()` to interpret a string parameter as the `redirectTo` property Closes #7794
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In your route configuration, it's easy to accidentally write:
Thinking that it will behave like:
What will actually happen is that the app's routing will have no otherwise behavior.
$routeProvider.otherwise
should either throw an error, or alias the string as theredirectTo
property of the configuration. I have a slight preference towards a string parameter be the same asredirectTo
.Thoughts? @caitp @matsko @IgorMinar
The text was updated successfully, but these errors were encountered: