Есть роут
.state('app.catID', {
url: '/catid/:catID',
views: {
'menuContent': {
templateUrl: 'templates/category.html',
controller: 'catCtrl'
},
'filterView': {
templateUrl: 'templates/filter.html',
controller: 'filCtrl'
},
'sideView': {
templateUrl: 'templates/category/category_dynamic.html',
controller: 'categoryMenuCtrl'
}
}
})
Как сделать, чтобы когда параметр catid = 123 - то
'filterView': {
templateUrl: 'templates/filter123.html',
controller: 'filCtrl'
},
, а когда
456
'filterView': {
templateUrl: 'templates/filter456.html',
controller: 'filCtrl'
},
,
а во всех других случаях - просто filter.html ?