我有一个简单的TODO应用程序(来自Apress书,Pro Angular)。当前,我有一个小应用程序,用户可以在框中输入一些信息,单击一个按钮,然后将TODO任务弹出到屏幕上。我想发生的事情是在用户单击按钮以将任务添加到页面后,然后焦点再次转到输入文本框。我目前能用的是什么,但是我希望将此作为指令,以便我可以重用它。
JS
var model = {
user: "Adam"
}
var todoApp = angular.module('todoApp',[]);
//get data
todoApp.run(function($http){
$http.get('todo.json').success(function(data){
model.items = data;
});
});
//need a directive that can listen for a button click
todoApp.directive('refocus',function(){
return {
restrict: 'a',
link: function(scope, elem, attrs){
scope.$watch('someEvent',function(){
//how to listen for a specific click event
//and return focus to the input element afterwards
})
}
}
})
todoApp.filter('checkedItems',function(){
return function(items,showComplete){
var resultArr=[];
angular.forEach(items,function(item){
if(item.done==false || showComplete ==true){
resultArr.push(item);
}
})
return resultArr;
}
})
todoApp.controller('ToDoCtrl',function($scope){
$scope.todo = model;
$scope.incompleteCount = function(){
var count =0;
angular.forEach($scope.todo.items,function(item){
if(!item.done){
count++;
}
});
return count;
}
$scope.addNewItem = function(actionText){
$scope.todo.items.push({action: actionText, done: false});
$scope.actionText = "";
$scope.returnFocus('#getFocus');
};
$scope.returnFocus = function(elem){
$(elem).focus();
};
});
的HTML
<body ng-controller="ToDoCtrl">
<div class="page-header">
<h1>
{{todo.user}}'s To Do List
<span class="label label-default">
</span>
</h1>
</div>
<div class="panel">
<div class="input-group">
<input id="getFocus" ng-model="actionText" class="form-control" ng-focus="" />
<span class="input-group-btn">
<button ng-click="addNewItem(actionText)" class="btn btn-default">Add</button>
</span>
</div>
<table class="table table-striped">
<thead>
<tr>
<th>Description</th>
<th>Done</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in todo.items | checkedItems: showComplete | orderBy:'done'">
<td>{{item.action}}</td>
<td><input type="checkbox" ng-model="item.done"/></td>
</tr>
</tbody>
</table>
<div class="checkbox-inline">
<label><input type="checkbox" ng-model="showComplete">Show complete</label>
</div>
</div>
</body>
您可以在addNewItem函数中看到,我使用jQuery选择器将焦点返回到输入文本,但这不会使其可重用。如何完成我的残酷指令以使这种行为可重用?
最佳答案
有几个模块可以做到这一点。 (无耻的插件!)这是一个:angular-focus-on
我的方法是通过使用事件。这非常简单明了。这是已实现模块的fiddle。
我快速更改过的行:
首先将模块添加到您的应用中:
var todoApp = angular.module('todoApp',['kf.focusOn']);
然后,我们通过添加
focus-on
和event="todoAdded"
属性来使用它。因此,当触发todoAdded
事件时,该元素将被聚焦。<input ng-model="actionText" class="form-control" focus-on event="todoAdded" />
现在,在 Controller 中,我们要做的就是
$scope.$broadcast('todoAdded')
,以触发todoAdded
事件。看起来像:$scope.addNewItem = function(actionText){
$scope.$broadcast('todoAdded'); // this fires an event.
$scope.todo.items.push({action: actionText, done: false});
$scope.actionText = "";
};
现在让我们看一下模块的工作方式:
angular.module('kf.focusOn', [])
.directive('focusOn', [function() {
return {
restrict: 'A', // Restrict to attribute only
scope: {
event: '@' // Accept an event attribute.
},
link: function($scope, elem) {
$scope.$on($scope.event, function() { // On the event passed by $scope.event...
elem[0].focus(); // Focus on the element.
});
}
}
}]);
如您所见,这没什么花哨的,而且非常简单,它接受
event
范围,并且在触发事件时将焦点仅应用于元素。