0
Ich möchte Einzel-Eltern-Ansicht und teilweise Kind Ansichten in einer Seite ich bin verwenden staatliche Anbieter.Wie kann ich Eltern Vorlage und Kind Vorlage mit staatlichen Anbietern zeigen
AngularJS Code:
state('packs', {
//controller:'PacksController',
abstract:true,
views: {
'@': {
template:'<ui-view/>',
controller: 'PacksController',
controllerAs: 'packctrl'
},
'[email protected]': {
templateUrl: 'static/vendor/views/packs.html',
controller: 'PacksController',
controllerAs: 'packctrl'
}
}
})
.state('packs.general',{
parent:'packs',
url:'/general',
views: {
'@': {
templateUrl:'static/vendor/views/packs.general.html',
controller: 'PacksController',
controllerAs:'packctrl'
}
}
})
HTML-Code ist:
<div ui-view></div>