在以下示例中,两个路由都解析为 detail.html 模板。我如何使第一条路线优先,因为它是明确定义的而不是作为命名参数?
$routeProvider.
when('/about', {templateUrl: 'about.html'}).
when('/:id', {templateUrl: 'details.html'});
在以下示例中,两个路由都解析为 detail.html 模板。我如何使第一条路线优先,因为它是明确定义的而不是作为命名参数?
$routeProvider.
when('/about', {templateUrl: 'about.html'}).
when('/:id', {templateUrl: 'details.html'});