Angularjs + phonegap登出历史记录

时间:2013-08-06 12:54:51

标签: javascript angularjs cordova

我使用angularjs 1.1.5

创建了一个移动电话差距应用程序

在应用程序运行时,将显示登录表单。登录成功后, 用户被重定向到新的“ / accounts / profile ”网址( ProfileCtrl 控制器)。

在每个页面上(位于“ / accounts / login ”的登录表单旁边),有一个后退按钮 位于屏幕的左上角。

整个应用程序与“ AppCtrl ”控制器(以及提到后退按钮的topbar)相关联。应用程序的其余部分与 ng-view 指令绑定,每个指令都有单独的控制器。

后退按钮是AppCtrl控制器中定义的函数,只需返回window.history.back()

即可

我需要停用个人资料页面上的window.history.back()(成功记录后显示的那个),位于“ / accounts / profile ”绑定到 ProfileCtrl 控制器。 而应该注销使用用户。 (为了简单起见,我在这里省略了注销确认)。同样应该适用于按下手机的后退按钮。

目前,我正在使用 ProfileCtrl 中的goBack()更改子范围中的$scope.$parent.goBack() = logout()函数..但我不知道,我将如何将其绑定到物理后退按钮。

1 个答案:

答案 0 :(得分:0)

要绑定到物理后退按钮,您可以使用:

document.addEventListener("backbutton", $scope.goBack, false);

为此,您需要在控制器中使用Angular $窗口和$ location服务的组合。我建议不要覆盖你的$ parent范围函数,因为你可能会在另一个页面上遇到奇怪的行为。此外,请注意您不允许在iOS设备上退出或暂停您的应用。请参阅以下示例代码:

var AppCtrl = ['$scope', '$window', '$location', '$timeout', '$notification', '$rootScope', function ($scope, $window, $location, $timeout, $notification, $rootScope) {
'use strict';

// Somewhere inside AppCtrl
$scope.checkExit = function () {

    // https://stackoverflow.com/questions/14422908/iphone-does-not-recognize-phonegaps-navigator-app
    // fack!!!
    if ($location.path() == '/home' && !$scope.isIOS) {
        $notification.confirm("Exit application?", function(result) {
            if ($window.isPhoneGap && result == 1) {
                $rootScope.$broadcast('appExit');  // ga tracking
                navigator.app.exitApp();
            }
        });
        return true;
    }

    return false;
};

$scope.goBack = function (evt) {
    if (evt != null) {
        if (evt.preventDefault) {
            evt.preventDefault();
        }
    }

    if (!$scope.checkExit()) {
        $window.history.back();
    }
};

document.addEventListener("backbutton", $scope.goBack, false);

}]; // End AppCtrl 

// in some other file, I have $notification friendly factory
app.factory('$notification', ['$rootScope', '$window', function ($rootScope, $window) {
  return {
     alert: function(message) {
         if (!$window.isPhoneGap) {
             $window.alert(message);
             return;
         }

         navigator.notification.alert(message, null, '', 'OK');
     },
     confirm: function (message, callbackFn, title, buttonLabels) {
         if (buttonLabels == null) {
             buttonLabels = 'OK,Cancel';
         }

         if (!$window.isPhoneGap) {
             callbackFn($window.confirm(message) ? 1 : 2);
             return;
         }

         navigator.notification.confirm(
                 message,       // message
                 callbackFn,    // callback to invoke with index of button pressed
                 title,         // title
                 buttonLabels.split(',')   // buttonLabels
             );
     },
     prompt: function (message, callbackFn, title, defaultText, buttonLabels) {
         if (buttonLabels == null) {
             buttonLabels = 'OK,Cancel';
         }
         if (defaultText == null) {
             defaultText = '';
         }

         if (!$window.isPhoneGap) {
             var answer = $window.prompt(message, defaultText);
             callbackFn({
                 buttonIndex: (answer ? 1 : 2),
                 input1: answer
             });
             return;
         }

         navigator.notification.prompt(
            message,        // message
            callbackFn,     // callback to invoke
            title,          // title
            buttonLabels.split(','),
            defaultText
        );
     }
  };
}]);

我在此代码示例中早期设置了window.isPhoneGap:navigator.connection.type not working even if device is ready *or* device is never ready