在Ionic上安装Android的history.back()

时间:2014-08-25 21:26:53

标签: android refresh history ionic-framework

在Android上使用Ionic调用history.back()时如何刷新页面?它适用于iOS,但在Android上它重新加载页面。我在Cordova 3.5上。

1 个答案:

答案 0 :(得分:2)

您正在寻找$ionicNavBarDelgate.back()方法。这使用ui.router状态导航回历史记录而不重新加载页面。

请参阅:$ionicNavBarDelegate

<强> HTML

<button type="button" class="button button-clear" ng-click="goBack()">Back</button>

Javascript控制器

angular.module('App').controller('PageCtrl', function ($scope, $ionicNavBarDelegate) {
  $scope.goBack = function () {
    $ionicNavBarDelegate.back();
  };
});