Ionic: How to override back button function?

前端 未结 2 1774
情歌与酒
情歌与酒 2021-01-14 02:07

I need to override the back button function for both buttons:

  • the back icon on top left corner of nav-bar
  • the hardware back button (for example in and
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-14 02:34

    This code is for android button, while the button on the navigation bar is a bit more simple:

    Android button :

    $ionicPlatform.registerBackButtonAction(function (event) {
      if($state.current.name=="home"){
        alert("button back");
      }
    }, 100);
    

    Ionic button :

    You can edit your topic and see how you have defined your menus and your views?

提交回复
热议问题