Error: navBarController.back() is deprecated, please use $ionicHistory.goBack() instead

64 views Asked by At

I'm getting this error

navBarController.back() is deprecated, please use $ionicHistory.goBack() instead

Although I haven't included any such thing in my controller.

My html has this:

<ion-nav-back-button>
</ion-nav-back-button>

And

$ionicNavBarDelegate.back()// in controller

Which might be the cause.

Note: I'm using ionic 1 and

1

There are 1 answers

0
Amrit Subedi On

Use $ionicHistory.goBack();

In html:

<ion-nav-back-button ng-click="vm.goBack()">
</ion-nav-back-button>

In controller:

vm.goBack = function() {
     $ionicHistory.goBack();
}

This should do it.