ページにid = "viewQuestions"のあるボタンがページにあります。
<body ng-keydown="key($event);">
私のコードは次のようなキーヒットをチェックしています:
$scope.key = function ($event) {
$scope.$broadcast('key', $event.keyCode)
}
そしてコントローラーで:
$scope.$on('key', function (e, key) {
if (key == 13) {
if (ts.test.current && ts.test.userTestId) {
document.getElementById("viewQuestions").click();
}
}
});
コードを実行してENTERをクリックすると、次のエラーが発生します。
Error: [$rootScope:inprog] $apply already in progress
http://errors.angularjs.org/1.3.7/$rootScope/inprog?p0=%24apply
at REGEX_STRING_REGEXP (http://localhost:2757/lib/angular/angular.js:63:12)
at beginPhase (http://localhost:2757/lib/angular/angular.js:14735:15)
at Scope.$get.Scope.$apply (http://localhost:2757/lib/angular/angular.js:14479:11)
at HTMLButtonElement.<anonymous> (http://localhost:2757/lib/angular/angular.js:22945:23)
at HTMLButtonElement.eventHandler (http://localhost:2757/lib/angular/angular.js:3009:21)
at http://localhost:2757/app/tests/controllers/TestsController.js:24:62
at Scope.$get.Scope.$broadcast (http://localhost:2757/lib/angular/angular.js:14700:28)
at Scope.AppController.$scope.key (http://localhost:2757/app/appController.js:30:20)
at $parseFunctionCall (http://localhost:2757/lib/angular/angular.js:12330:18)
at ngEventDirectives.(anonymous function).compile.element.on.callback (http://localhost:2757/lib/angular/angular.js:22940:17)
誰か私にこれについてのアドバイスをいただけますか? Enterキーを押したときのボタンのクリックをシミュレートしたいだけです。私はフォームで解決策を試しましたが、それは私のかなり複雑なニーズを満たしていません。
クリックイベントは、現在のダイジェストサイクルと競合するダイジェストサイクルを実行しています。$timeout
がこの状況に役立ちます。 $timeout
関数内でクリックイベントをラップします。
Markup
<body ng-app="myApp" ng-controller="testCtrl" ng-keydown="key($event);">
<button id="viewQuestions" type="button" ng-click="isButtonClicked = !isButtonClicked; test();"> Test</button>
Is Button Clicked {{isButtonClicked}}
</body>
コード
$scope.$on('key', function (e, key) {
if (key == 13) {
if (ts.test.current && ts.test.userTestId) {
$timeout(function(){
angular.element(document.getElementById("viewQuestions")).trigger('click');
})
}
}
});
ng-click
内に何を書き込んでも、呼び出されます。