我有一个简单的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选择器将焦点返回到输入文本,但这并不能使它可重用。如何完成我的stubped指令以使这种行为可重用?
答案 0 :(得分:2)
有几个模块可以做到这一点。 (无耻的插头!)这里有一个: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" />
现在在控制器中,我们所要做的只是$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
范围,只是在触发事件时将焦点应用于元素。