Ionic Framework - "nav" undefined when trying to click pages

I am trying to make an android application using the Ionic framework. I have implemented a side menu, and when I try to push pages from the side menu, I get an error message in the console:

Unable to read the "push" property from undefined

app.ts

import { Component, ViewChild } from '@angular/core';
import { ModalController, ionicBootstrap, Platform, MenuController, NavController } from 'ionic-angular';
import { StatusBar } from 'ionic-native';

import { HomePage } from './pages/home/home';
import {AppSettingsPage} from "./pages/app-settings/app-settings";
import {TabsPage} from "./pages/tabs/tabs";
import {ReserveRoomPage} from "./pages/reserve-room/reserve-room";
import {ConfirmedReservationsPage} from "./pages/confirmed-reservations/confirmed-reservations";


@Component({
  templateUrl: 'build/app.html',
  providers: [NavController]
})
export class MyApp {
  @ViewChild('nav') nav: NavController;
  private rootPage: any;
  private pages: any[];
  private icon = 'cog';

  constructor(private platform: Platform, private menu: MenuController,
  private modalCtrl: ModalController) {
  this.menu = menu;
    this.pages = [
      {title: 'Home', component: HomePage, icon: 'home'},
      {title: 'Settings', component: AppSettingsPage, icon: 'settings'},
      {title: 'Reserve Room', component: ReserveRoomPage, icon: 'add'},
      {title: 'My Reservations', component: ConfirmedReservationsPage, icon: 'book'},
    ];
    this.rootPage = TabsPage;

    platform.ready().then(() => {
      StatusBar.styleDefault();
    });
  }

  openPage(page){
    this.menu.close();
    this.nav.push(page.component);
  }

}

ionicBootstrap(MyApp);

app.html

<ion-menu [content] = "content">
  <ion-toolbar>
    <ion-title><strong>Giman</strong>.lk</ion-title>
  </ion-toolbar>
  <ion-content>
    <ion-list>
      <button ion-item *ngFor="let p of pages" (click)="openPage(p)">
        <ion-icon name="{{ p.icon }}"></ion-icon> {{ p.title }}
      </button>
    </ion-list>
  </ion-content>
</ion-menu>

<ion-nav id="nav" [root]="rootPage" #content swipe-back-enabled="false"></ion-nav>

app-settings.ts (Example of the page I want to click)

import { Component } from '@angular/core';
import { ViewController, NavController } from 'ionic-angular';

@Component({
  templateUrl: 'build/pages/app-settings/app-settings.html',
})
export class AppSettingsPage {

  constructor(private navCtrl: NavController, private view: ViewController) {

  }
  goBack(){
    this.view.dismiss();
  }

}

(I imported ModalController because I needed to view my application UI thread and because push didn’t work, I used each page as modal for preview purposes only. For the last application I need to click and pop)

+4
2

@ViewChild NavController, Nav.

import { Nav } from 'ionic-angular';

.....

@Component({
  templateUrl: "build/app.html" //no need for the provider
})

class MyApp{
  @ViewChild(Nav) nav:Nav; //remove the 'id' from the HTML, it will find the ion-nav tag
  ....
  someFunction(){
    this.nav.push(YourComponent);
    //or
    this.nav.setRoot(YourComponent); 
  }
}
+4

IONIC 3, , ! nav childview

   var navParent = this.navCtrl.parent.parent as NavController;
   navParent.push('DetailsTabPage')
0

Source: https://habr.com/ru/post/1655787/


All Articles