嵌套 ng-view 可以在 angularjs 中使用,或者如果有任何替代解决方案。如果可以在 ng-view 中使用 ng-view。
问问题
633 次
1 回答
2
使用 ui-router 进行嵌套视图.. 在此处阅读有关 ngRoute 和 uiRouter 之间的比较
下面是如何定义嵌套视图的示例...
.state('bulletinBoard', {
url: '/bulletinBoard',
templateUrl: '../src/app/bulletinBoard/views/bulletinBoard.part.html',
views: {
'tradeFeed': {
controller: 'tradeFeedController',
templateUrl: '../src/app/bulletinBoard/views/tradeFeed.part.html'
},
'newsFeed': {
controller: 'newsFeedController',
templateUrl: '../src/app/bulletinBoard/views/newsFeed.part.html'
}
}
});
阅读嵌套视图的最佳来源是此处的官方文档链接
于 2014-09-20T06:24:34.593 回答