我如何拥有多个离子视图? - 我尝试了各种各样的工作,但都失败了......
以下是我的Angular Ionic应用程序的相关部分:
<body ng-app="ionic_appname">
<ion-nav-view></ion-nav-view>
<ion-nav-view name="errorsView" title="Errors"></ion-nav-view>
.config(
function ($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/');
$stateProvider
.state('errors', {
views: {
errorsView: {
templateUrl: 'main/templates/errors.html'
}
}
})
.state('home', {
url: '/',
templateUrl: 'main/templates/home.html',
})
}
<h3>Errors ahoy</h3>
<h3>Tadaima</h3>
然而渲染的输出只是:
<body ng-app="ionic_appname" class="grade-a platform-browser platform-win32 platform-ready">
<ion-nav-view class="view-container" nav-view-transition="ios" nav-view-direction="none" nav-swipe="">
<ion-view view-title="Home" class="pane" nav-view="active" style="opacity: 1; transform: translate3d(0%, 0px, 0px);">
<h3>Tadaima</h3>
</ion-view>
</ion-nav-view>
<ion-nav-view name="errorsView" title="Errors" class="view-container" nav-view-transition="ios"></ion-nav-view>
答案 0 :(得分:0)
您是否已经看过这个Plunker?
http://plnkr.co/edit/UkXhXK?p=preview
它使用&#34;嵌套视图&#34;可能你可以在你的项目中采用的方法。 例如:
.state('home', {
url: '/',
// loaded into ui-view of parent's template
views:{
'homePage': {
templateUrl: 'main/templates/home.html',
controller: 'HomeController'
},
'errorPage': {
templateUrl: 'main/templates/errors.html',
controller: 'ErrorController'
}
},
onEnter: function(){
console.log("enter home");
}
})