<div ng-app>
<input type="text" ng-model="leNom">
<h1>Bonjour {{leNom}}!</h1>
</div>
<h1>Bonjour {{leNom | capitalize}}!</h1>
La définition du filtre :
app.filter('capitalize', function() {
return function(s) {
return s ? s.charAt(0).toUpperCase() + s.slice(1) : '';
};
});
app.controller('TodoController', function($scope) {
$scope.todos = [
{text:'apprendre angular', done:true},
{text:'faire une appli angular', done:false}];
$scope.addTodo = function() {
$scope.todos.push({text: $scope.todoText, done: false});
$scope.todoText = '';
};
});
<div ng-app="todoApp">
<h2>Todo</h2>
<div ng-controller="TodoController">
<ul>
<li ng-repeat="todo in todos">
<input type="checkbox" ng-model="todo.done">
<span class="done-{{todo.done}}">{{todo.text}}</span>
</li>
</ul>
<form ng-submit="addTodo()">
<input type="text" ng-model="todoText">
<input type="submit" value="add">
</form>
</div>
</div>
<input type="text" ng-class="{loading: searching}" ng-model="leNom">
<ul ng-repeat="e in suggestions">
<li>{{e.displayName}}</li>
</ul>
<div ng-if="partialResults">Votre recherche est limitée. Pour les autres résultats, veuillez affiner la recherche.</div>
app.controller('MyCtrl', function ($scope, searchUser) {
$scope.$watch('leNom', suggest);
function suggest(token) {
var maxRows = 10;
$scope.searching = true;
searchUser(token, maxRows).success(function (l) {
$scope.suggestions = l;
$scope.partialResults = $scope.leNom.length < 4 || l.length == maxRows;
}).finally(function () {
$scope.searching = false
});
};
});
app.factory('searchUser', function ($http) {
var searchUserURL = 'http://wsgroups.univ-paris1.fr/searchUser';
return function(token, maxRows) {
return $http.jsonp(searchUserURL +
"?callback=JSON_CALLBACK&maxRows=" + maxRows +
"&token=" + encodeURIComponent(token));
}
});
Java | node.js | |
---|---|---|
concaténation | yuicompressor | grunt-concat |
minification | yuicompressor | grunt-usemin |
vérification de code | jshint-maven-plugin (lent) | grunt-contrib-jshint |
cache buster | jasig resource-server (wro4j namingStrategy?) | grunt-rev |
download libs | webjars | bower |
custom jquery | ? | grunt-jquery-builder |
angular templates | ? | grunt-angular-templates |
NB : les webjars ne fournissent pas de liste ordonnée pour concaténation, par contre possibilité d'utiliser require.js