我是 AngularJs 的新手,我正在学习一些教程来学习一些东西。
现在我正在处理路线。我的配置是类似的:
$routeProvider
.when('/',
{
controller: 'Controller1',
templateUrl: 'View1.html'
})
.when('/one',
{
controller: 'Controller1',
templateUrl: 'View1.html'
})
.when('/two',
{
controller: 'Controller2',
templateUrl: 'View2.html'
})
.otherwise({redirectTo: '/'});
现在我想知道,是否可以将前两个合并.when
为一个条件?我试过类似的东西:.when(['/', '/one'], ...
但它不起作用。
有没有办法做到这一点?