angular-validate-directive
v0.1.0
Published
simple AngularJS validation directive
Downloads
7
Maintainers
Readme
angular-validate-directive
An angular directive for doing one-off custom validation.
Under the hood this directive uses the validator API introduced in angular 1.3. See NgModelController's $validators and $asyncValidators properties:
https://docs.angularjs.org/api/ng/type/ngModel.NgModelController
Usage
- Include
validate.js
on your page afterangular.js
- Add
dbrans.validate
as a dependency of your app.
Synchronous validation
<form name="myForm">
<input name="foo" ng-model="foo" dbrans-validate="{odd: isOdd}">
<div ng-messages="myForm.foo.$error">
<div ng-message="odd">You need to pick an odd number.</div>
</div>
</form>
angular.module('yourModule')
.controller('MyController', function($scope) {
$scope.isOdd = function(x) { return x % 2 === 1; };
});
Async validation
<form name="myForm">
Choose a unique username:
<input name="username" ng-model="username"
dbrans-validate-async="{unique: isUsernameUnique}">
<div ng-messages="myForm.username.$error">
<div ng-message="unique">Sorry, that username is taken.</div>
</div>
</form>
angular.module('yourModule')
.controller('MyController', function($scope, $http, $q) {
$scope.isUsernameUnique = function(username) {
$http.get('/api/user/' + username).then(function() {
return $q.reject(); // 200 - user exists
}, function() {
return true; // 404 - user does not exist
});
};
});