how to go to another page with a button click with ionic?

后端 未结 12 1896
粉色の甜心
粉色の甜心 2020-12-31 10:26

I have been trying to work with the code, I added the button but I don\'t know how to link it to another page when clicking on it.

12条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-31 10:43

    html:

     
       
     
    

    OR

     Go an Other Page
    

    in TS:

    import { NavController } from 'ionic-angular';
    import { AnOtherPage } from '/anOtherPage';
    
    
    anOtherPage: AnOtherPage;
    
     constructor(public navCtrl: NavController) {}
    
    goAnOtherPage() {
      this.navCtrl.setRoot(anOtherPage);
    }
    

提交回复
热议问题