1

在以下示例中,两个路由都解析为 detail.html 模板。我如何使第一条路线优先,因为它是明确定义的而不是作为命名参数?

$routeProvider.
             when('/about', {templateUrl: 'about.html'}).
             when('/:id', {templateUrl: 'details.html'});
4

1 回答 1

0

斯图维,你是对的。第一条路线优先。

于 2013-03-04T14:40:45.153 回答