は:あなたはまだUI-SREFイオン1..butのみthis.navigation.push(「ホーム」)のように使用することはできません(https://ionicframework.com/docs/v2/api/navigation/NavController/
) ...それはあなたがしなければならないことTSファイルのナビゲーションを呼び出すためのHTML(多分(クリック)= "myfunc関数()")上の機能
import { Component, ViewChild } from '@angular/core';
import { NavController } from 'ionic-angular';
@Component({
template: '<ion-nav #myNav [root]="rootPage"></ion-nav>'
})
export class MyApp {
@ViewChild('myNav') nav: NavController
public rootPage = TabsPage;
// Wait for the components in MyApp's template to be initialized
// In this case, we are waiting for the Nav with reference variable of "#myNav"
ngOnInit() {
// Let's navigate from TabsPage to Page1
this.nav.push('home');
}
}