>我有2个页面,登录和主页,当用户成功登录时,它将被定向到主页,我将其设置为根页面。我已经通过使用navCtrl.canGoBackFunction确认了这一点,它是错误的。我尝试添加菜单切换,但是当我按下切换按钮时,菜单没有显示
这是我的家.html
<ion-header>
<ion-navbar color="primary">
<button menuToogle ion-button icon-only class="menu-button-left">
<ion-icon name="menu"></ion-icon>
</button>
<ion-title class="alogo"><img alt="logo" height="35" src="../../assets/imgs/logo.png" ></ion-title>
<button ion-button class="menu-button-right" (click)="logout()">
<p>Logout</p>
</button>
</ion-navbar>
</ion-header>
<ion-content padding-left padding-right>
</ion-content>
我的家
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { LoginPage } from '../login/login';
import { AuthService } from '../../app/services/auth.service'
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(
public navCtrl: NavController,
private authService: AuthService
) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad HomePage');
console.log(localStorage.getItem('token'));
}
logout(){
console.log('logout button clicked');
this.authService.logOut();
this.navCtrl.setRoot(LoginPage);
this.navCtrl.popToRoot();
}
}
我的应用.html
<ion-menu [content]="mycontent">
<ion-content>
<ion-list>
<p>List/p>
</ion-list>
</ion-content>
</ion-menu>
<ion-nav #mycontent [root]="rootPage" swipeBackEnabled="false"></ion-nav>
我已经多次重读手册,我没有看到我的方式有任何问题,手册说我把它放在导航栏中,页面应该是根。我也尝试使用工具栏,但再次单击菜单切换按钮没有任何作用。知道吗?
持久菜单在导航堆栈中所有页面上的导航栏中显示 MenuToggle 按钮。使菜单持久化,在元素上持久设置为 true。请注意,这只会影响附加到菜单的导航栏中的菜单切换按钮,持久设置为 true,任何其他菜单切换按钮都不会受到影响。在您的代码中,您必须像下面的代码一样进行更改。
我的应用.html
<ion-menu [content]="mycontent" persistent="true">
<ion-content>
<ion-list>
<p>List/p>
</ion-list>
</ion-content>
</ion-menu>
<ion-nav #mycontent [root]="rootPage" swipeBackEnabled="false"></ion-nav>