.state('home', {
url: '/home',
views: {
'main': {
templateUrl: './main.html',
controller: 'mainController'
},
'parent@home': {
templateUrl: './parent.html',
controller: 'parentController'
},
'child@home':{
templateUrl: './child.html',
controller: 'childController'
},
'otherPage@home': {
templateUrl: './other-page.html',
controller: 'otherController'
}
}
})
在parent.html中,我有子视图。基本上,父控制器(parentController)在此设置中启动两次。如果我删除了child @ home状态,则parentController只启动一次。我做错了什么,是否有更好的方法来定义这些状态?
<div class="maincontent" ui-view="main"></div>
<div class="maincontent container-fluid" ui-view="parent"></div>
<div class="maincontent container-fluid" ui-view="otherPage"></div>
<div ui-view="child"></div>
答案 0 :(得分:1)
重新定义这样的状态:
.state('home', {
url: '/home',
views: {
'': {
templateUrl: './main.html',
controller: 'mainController'
},
'parent@home': {
templateUrl: './parent.html',
controller: 'parentController'
},
'child@home':{
templateUrl: './child.html',
controller: 'childController'
},
'otherPage@home': {
templateUrl: './other-page.html',
controller: 'otherController'
}
}
})
根据我的理解,带有空键的视图将被加载为home状态的默认值。
通过这种方式,您的main.html
模板将包含指向其他ui-views
的指针,因为您已完成parent
和otherPage
。
我无法对此进行测试,因为我不在我的开发电脑上,但我认为它应该可行,因为它是我的几个AngularJS项目中遵循的格式。