So this seems like a common problem but I haven't found any definite answer. Basically I have a state:
.state('users', {
url: '/example/:id',
templateUrl: 'angular-views/example.html',
controller: 'ExampleCtrl'
})
I want id to be optional.
Sure it matches
example/
example/1234
But it doesn't match without trailing slash.
example
I tried $urlMatcherFactoryProvider.strictMode(false);
, but that does not seem to work for this case. I could use example?param=1234
, but I prefer the cleaner version.
Do I really need to define a second state for this to work?