我可以使用可选参数设置路由(相同的模板和控制器,但是如果某些参数不存在,则应该忽略它们?
所以不要写下面两条规则,只有一条?
module.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/users/', {templateUrl: 'template.tpl.html', controller: myCtrl}).
when('/users/:userId', {templateUrl: 'template.tpl.html', controller: myCtrl})
}]);
像这样的东西([这个参数是可选的])
when('/users[/:userId]', {templateUrl: 'template.tpl.html', controller: myCtrl})
//note: this previous doesn't work
我在他们的文档中找不到任何东西。