我一直在尝试使用代码,我添加了按钮,但单击该按钮时我不知道如何将其链接到另一个页面。

最佳答案

的HTML:

 <ion-buttons>
   <button ion-button (click)="goAnOtherPage()">Go an Other Page </button>
 </ion-buttons>

或者
 <ion-label  [navPush]="anOtherPage">Go an Other Page</ion-label>

在TS中:
import { NavController } from 'ionic-angular';
import { AnOtherPage } from '/anOtherPage';


anOtherPage: AnOtherPage;

 constructor(public navCtrl: NavController) {}

goAnOtherPage() {
  this.navCtrl.setRoot(anOtherPage);
}

09-26 09:11