Can I set a route with optional params (same template and controller, but some params should be ignored if they don\'t exist?
So instead of writing the following two
Actually I think OZ_ may be somewhat correct.
If you have the route '/users/:userId' and navigate to '/users/' (note the trailing /), $routeParams in your controller should be an object containing userId: "" in 1.1.5. So no the paramater userId isn't completely ignored, but I think it's the best you're going to get.