Clicking the device back button closes the app instead of going back to previous page

后端 未结 5 1362
北海茫月
北海茫月 2020-11-30 06:04

If click any ion-item it open the desired page but if i click device back button it close the app rather than going back to previous page in android:

Th

5条回答
  •  时光取名叫无心
    2020-11-30 06:45

    Import NavController in your app.component.ts and use below code.

    import { NavController} from '@ionic/angular';
    
    constructor( private nav: NavController ) {this.initializeApp();}
    
    ngOnInit() {
        this.plateform.backButton.subscribe(res => {
          this.nav.goBack('');
        });
      }
    

提交回复
热议问题