Search code examples
angularionic2

ngOnInit not called when coming back


I noticed that the ngOnInit() method gets not called when I come back to the page which is already instanced. I have to use any other method for this? I need a method which is called everytime when he is visiting the specific page.

EDIT Tested already onPageWillEnter() but it gets not fired in Ionic 2


Solution

  • Check Lifecycle Events section in the link.

    You can use ionic 2 lifecycle hook

    ionViewWillEnter(){
     //your methods
    }