我有一个简单的基于Tab的Ionic-app。我在应用程序进入实际的标签模板之前有一个登录信息。在输入选项卡视图之前,用户可以使用导航栏上的后退按钮在视图之间导航,这些按钮是在获取新视图时自动生成的。
但是进入选项卡后这不起作用。我希望选项卡具有多个视图,框架应该管理导航栏,因为它具有导航历史记录并且知道用户来自何处。我已经在互联网上读到了这个,但我无法找到并做出榜样。
这是标签的代码,一旦进入“邀请”,就应该能够返回。视图:
制表home.html的
<ion-view view-title="Angelsportverein Test e.V.">
<ion-header-bar class="bar-positive bar-subheader">
<h1 class="title">Mitglieder</h1>
<div class="buttons">
<!-- the register function navigates to the invite view -->
<button class="button icon icon-right" ng-click="invite()">
Einladen
</button>
</div>
</ion-header-bar>
<ion-content class="has-subheader">
<ion-list>
<ion-item ng-repeat="item in items">
Item {{ item.id }}
</ion-item>
</ion-list>
</ion-content>
</ion-view>
标签主页控制器:
.controller('HomeCtrl', function($scope, $state) {
$scope.invite = function() {
console.log('Invite');
$state.go('invite');
};
})
app.js(请注意,注册,登录和密码之间的导航忘记了它应该如何运作)
angular.module('starter', ['ionic', 'starter.controllers', 'starter.services'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
cordova.plugins.Keyboard.disableScroll(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
});
})
.config(function($stateProvider, $urlRouterProvider) {
// Ionic uses AngularUI Router which uses the concept of states
// Learn more here: https://github.com/angular-ui/ui-router
// Set up the various states which the app can be in.
// Each state's controller can be found in controllers.js
$stateProvider
//login states
.state('signin', {
url: '/sign-in',
templateUrl: 'templates/sign-in.html',
controller: 'SignInCtrl'
})
.state('forgotpassword', {
url: '/forgot-password',
templateUrl: 'templates/forgot-password.html'
})
.state('register', {
url: '/register',
templateUrl: 'templates/register.html',
controller: 'RegisterCtrl'
})
// setup an abstract state for the tabs directive
.state('tab', {
url: '/tab',
abstract: true,
templateUrl: 'templates/tabs.html'
})
// Each tab has its own nav history stack:
.state('tab.home', {
url: '/home',
views: {
'tab-home': {
templateUrl: 'templates/tab-home.html',
controller: 'HomeCtrl'
}
}
})
.state('invite', {
url: '/invite',
templateUrl: 'templates/invite.html',
controller: 'InviteCtrl'
})
.state('tab.kalender', {
url: '/kalender',
views: {
'tab-kalender': {
templateUrl: 'templates/tab-kalender.html',
controller: 'KalenderCtrl'
}
}
})
.state('tab.chat-detail', {
url: '/kalender/:chatId',
views: {
'tab-chats': {
templateUrl: 'templates/chat-detail.html',
controller: 'ChatDetailCtrl'
}
}
})
.state('tab.fangbuch', {
url: '/fangbuch',
views: {
'tab-fangbuch': {
templateUrl: 'templates/tab-fangbuch.html',
controller: 'FangbuchCtrl'
}
}
});
// if none of the above states are matched, use this as the fallback
$urlRouterProvider.otherwise('/sign-in');
});
tabs.html
<!--
Create tabs with an icon and label, using the tabs-positive style.
Each tab's child <ion-nav-view> directive will have its own
navigation history that also transitions its views in and out.
-->
<ion-tabs class="tabs-icon-top tabs-color-active-positive">
<!-- Dashboard Tab -->
<ion-tab title="Home" icon-off="ion-home" icon-on="ion-home" href="#/tab/home">
<ion-nav-view name="tab-home"></ion-nav-view>
</ion-tab>
<!-- Kalender Tab -->
<ion-tab title="Kalender" icon-off="ion-calendar" icon-on="ion-calendar" href="#/tab/kalender">
<ion-nav-view name="tab-kalender"></ion-nav-view>
</ion-tab>
<!-- Fangbuch Tab -->
<ion-tab title="Fangbuch" icon-off="ion-folder" icon-on="ion-folder" href="#/tab/fangbuch">
<ion-nav-view name="tab-fangbuch"></ion-nav-view>
</ion-tab>
</ion-tabs>
的index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
</head>
<body ng-app="starter">
<!--
The nav bar that will be updated as we navigate between views.
-->
<ion-nav-bar class="bar-stable">
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<!--
The views will be rendered in the <ion-nav-view> directive below
Templates are in the /templates folder (but you could also
have templates inline in this html file if you'd like).
-->
<ion-nav-view></ion-nav-view>
</body>
</html>
答案 0 :(得分:1)
它不起作用,因为invite
状态的状态配置不正确。您已将invite
指定为tab
状态的兄弟,但tab.home
指令的ion-nav-bar
子项应自动生成后退按钮并处理历史记录。您还需要在命名选项卡invite
中呈现tab-home
视图。如下所示更改您的状态配置,您的预期行为应该有效:
.state('tab.invite', {
url: '/invite',
views: {
'tab-home': {
templateUrl: 'templates/invite.html',
controller: 'InviteCtrl'
}
}
})