簡體   English   中英

離子首頁重定向不起作用

[英]Ionic home page redirect is not working

碼:

<ion-segment [(ngModel)]="segment" color="primary">
    <ion-segment-button value="Home" (click)="page_redirect('HomePage')" text-center> Home </ion-segment-button>
    <ion-segment-button value="Featured" (click)="page_redirect('FeaturedItemPage')" text-center> Featured </ion-segment-button>
    <ion-segment-button value="Category" (click)="page_redirect('CategoriesPage')" text-center> Category </ion-segment-button>
    <ion-segment-button value="User" user text-center> User </ion-segment-button>
</ion-segment>

page_redirect函數:

page_redirect(page){
    this.navCtrl.push(page);
}

錯誤:

未捕獲(承諾):無效鏈接:主頁

誰能告訴我為什么離子首頁重定向不起作用? CategoriesPageFeaturedItemPage重定向的工作方式像一個超級按鈕。

有時候這發生在我身上。 用“離子服務”停止和啟動服務器似乎可以解決此問題。

只是為了確保檢查您頁面的名稱是否完全是HomePage

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM