11

我正试图让我的控制器注意组合键。为了论证起见,假设:上上下下左右左右b a。无论用户当前在页面的哪个位置,我如何才能有角度地注意这些?

4

7 回答 7

12

看起来您可以使用ng-keydown来执行此操作。

这是一个工作的plunker

对于这个示例,我只是绑定ng-keydown<body>. 可以很好地捕获全局的所有键盘事件。

正如@charlietfl 指出的那样,ng-keydown注册了很多键盘事件,因此要使其可用需要做很多工作。例如,如果您尝试侦听组合(如ctrl+ r),则该ctrl键将注册多次。

JS:

var myApp = angular.module('myApp', []);

myApp.controller('Ctrl', function($scope) {


    $scope.keyBuffer = [];

    function arrays_equal(a,b) { return !(a<b || b<a); }

    $scope.down = function(e) {

      $scope.keyBuffer.push(e.keyCode);

      var upUp = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65];
      if (arrays_equal(upUp, $scope.keyBuffer)) {

        alert('thats it!');
      }
    };

  });

HTML:

<body ng-controller="Ctrl" ng-keydown="down($event)">
于 2013-11-11T17:24:50.630 回答
4

我正在使用不同的方式来做到这一点。

$scope.keyboard = {
  buffer: [],
  detectCombination: function() {
    var codes = {};

    this.buffer.forEach(function(code) {
      codes['key_' + code] = 1;
    });

    if ((codes.key_91 || codes.key_93) && codes.key_8) {
      // I'm looking for 'command + delete'
    }
  },
  keydown: function($event) {
    this.buffer.push($event.keyCode);
    this.detectCombination();
  },
  keyup: function($event, week) {
    this.buffer = [];
  }
};
于 2014-12-13T15:34:34.093 回答
3

检测 Backspace-Key (Mac) 和 Del-Key (PC):

<body ng-controller="Ctrl" ng-keydown="keyDown($event)">..<body>

$scope.keyDown = function(value){
    if(value.keyCode == 46 || value.keyCode == 8) {
        //alert('Delete Key Pressed');
    }
};
于 2015-10-16T23:43:42.190 回答
2

这一切都未经测试,但你可以使用ng-keypress

<body ng-keypress="logKeys($rootScope,$event)">...</body>

调用类似的函数:

appCtrl.$scope.logKeys = function($rootScope,$event){
    $rootScope.keyLog.shift(); // Remove First Item of Array
    $rootScope.keyLog.push($event.keyCode); // Adds new key press to end of Array
    if($scope.$rootScope.keyLog[0] !== 38) { return false; } // 38 == up key
    if($scope.$rootScope.keyLog[1] !== 38) { return false; }
    if($scope.$rootScope.keyLog[2] !== 40) { return false; } // 40 = down key
    if($scope.$rootScope.keyLog[3] !== 40) { return false; }
    if($scope.$rootScope.keyLog[4] !== 27) { return false; } // 37 = left key
    if($scope.$rootScope.keyLog[5] !== 39) { return false; } // 39 = right key
    if($scope.$rootScope.keyLog[6] !== 37) { return false; }
    if($scope.$rootScope.keyLog[7] !== 39) { return false; }
    if($scope.$rootScope.keyLog[8] !== 65) { return false; } // 65 = a
    if($scope.$rootScope.keyLog[9] !== 66) { return false; } // 66 = b

    $rootScope.doThisWhenAllKeysPressed(); // Got this far, must all match!
    return true;
}

在输入字段之外,我认为 ng-keypress 不起作用,但来自angular-ui的按键可能。

我敢肯定也应该有一个数组差异函数,但具体的调用现在回避了我。

于 2013-11-11T17:30:00.490 回答
0

看看这个 plunker。我已经实现了一个简单的“连续击键 2 次”场景。

您可以在纯 jQuery 中执行此操作,并使用$rootScope.$broadcast.

在和 Angular 回调中注册 jQuery 代码run(保证 Angular 已经引导):

app.run(function($rootScope) {
  var upHitOnce = false;
  $(document).keyup(function(event) {
    if (event.which == 38) {
      if (upHitOnce) {
        $rootScope.$broadcast('DoubleUpFired');
        $rootScope.$apply();
        upHitOnce = false;
      } else {
        upHitOnce = true;
      }
    } else {
      upHitOnce = false;
    }
  });
});

然后任何控制器都可以收听此事件,例如:

$scope.$on('DoubleUpFired', function() {
    $scope.fired = true;
});

绑定一个ng-keydown动作回调body是可以的,但有一个小缺点。$digest它在每次击键时触发一个。您真正想要的是$digest仅当您以某种方式需要更新 UI 时输入了序列。

编辑

请参阅有关如何删除实际 jQuery 依赖项的评论。

于 2013-11-11T17:41:21.550 回答
0

这是我的看法:

var app = angular.module('contra', []);
app.directive('code', function () {
    function codeState() {
        this.currentState = 0;
        this.keys = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65];
        this.keyPressed = function (key) {
            if (this.keys[this.currentState] == key) {
                this.currentState++;
                if (this.currentState == this.keys.length) {
                    this.currentState = 0;
                    return true;
                }
            } else {
                this.currentState = 0;
            }
            return false;
        };
    };
    return {
        restrict: 'A',
        link: function (scope, element, attrs) {
            var cs = new codeState();
            scope.isValid = "NO";
            element.bind("keydown", function (event) {
                scope.$apply(function () {
                    if (cs.keyPressed(event.which)) {
                        scope.isValid = "YES";
                        console.log("CODE ENTERED");
                    } else {
                        scope.isValid = "NO";
                    }
                });
            });
        }
    }
});

与此不同的是,它是一个指令,因此如果您将其附加在正文上,它将适用于整个页面。这也允许多次输入代码。

Plunkr:

http://plnkr.co/edit/tISvsjYKYDrSvA8pu2St

于 2013-11-11T17:52:55.463 回答
0

如果您尝试使用“ctrl+s”或“commond+s”(更改 commondKey)进行保存,也许可以使用它:

指令:

(function () {

  'use strict';
  var lastKey = 0;
  //var commondKey = 17;
  var commondKey = 91;
  angular
    .module('xinshu')
    .directive('saveEnter', function () {
      return function (scope, element, attrs) {
        element.bind("keydown", function (event) {
          if (event.which != commondKey && event.which != 83) {
            lastKey = 0;
          }
          if (lastKey == commondKey && event.which == 83) {
            scope.$apply(function () {
              scope.$eval(attrs.saveEnter);
            });
            event.preventDefault();
          }
          lastKey = event.which;
        });
      };
    });
})();

元素 :

<input id="title" save-enter="vm.saveTitle()"/>

您可以重命名 saveEnter in 指令,并更改 html 中的 save-enter。

'vm.saveTitle()' 是你想做的事情。

于 2015-09-30T10:06:17.530 回答