A validation plugin for Backbone.js inspired by Backbone.ModelBinding, and another implementation with a slightly different approach than mine at Backbone.Validations.
It's easy to get up and running. You only need to have Backbone (including underscore.js) in your page before including the Backbone.Validation plugin. If you are using the default implementation of the callbacks, you also need to include jQuery.
The plugin is tested with, and should work with the following versions of Backbone:
- 0.5.3
- 0.9.1
To configure your validation rules, simply add a validation property with a property for each attribute you want to validate on your model. The validation rules can either be an object with one of the built-in validators or a combination of two or more of them, or a function where you implement your own custom validation logic. If you want to provide a custom error message when using one of the built-in validators, simply define the msg
property with your message.
var SomeModel = Backbone.Model.extend({
validation: {
name: {
required: true,
msg: 'Name is required'
},
age: {
range: [1, 80]
},
email: {
pattern: 'email'
},
someAttribute: function(value) {
if(value !== 'somevalue') {
return 'Error';
}
}
}
});
See the built-in validators section in this readme for a list of the validators and patterns that you can use.
You can add a new validation
attribute to handle objects within your model. It can be reused, and nested as deep as you like.
var SomeModel = Backbone.Model.extend({
validation: {
image: {
required: true,
validation: {
src: {
required: true
}
}
}
}
});
The philosophy behind this way of using the plugin, is that you should be able to reuse your validation rules both to validate your model and to validate form input, as well as providing a simple way of notifying users about errors when they are populating forms. For this to work, you need to bind your view. The validation binding code is executed with a call to Backbone.Validation.bind(view)
.
There are several places that it can be called from, depending on your circumstances.
// Binding when rendering
var SomeView = Backbone.View.extend({
render: function(){
Backbone.Validation.bind(this);
}
});
// Binding when initializing
var SomeView = Backbone.View.extend({
initialize: function(){
Backbone.Validation.bind(this);
}
});
// Binding from outside a view
var SomeView = Backbone.View.extend({
});
var someView = new SomeView();
Backbone.Validation.bind(someView);
When binding to a view with a model, the validate method on the model is overridden to perform the validation. In addition, the model's isValid method is also overridden to provide some extra functionality.
When binding to a view with a collection, all models in the collection are bound as described previously. When you are adding or removing models from your collection, they are bound/unbound accordingly.
Note that if you add/remove models with the silent flag, they will not be bound/unbound since there is no way of knowing the the collection was modified.
If you want to remove the validation binding, this is done with a call to Backbone.Validation.unbind(view)
. This removes the validation binding on the model, or all models if you view contains a collection as well as removing all events hooked up on the collection.
If you want to use just the validation without the callbacks that update the model's view, you can do this by extending the Backbone.Model.prototype
. By doing this, all models will have the validation hooked up without the need for binding to a view.
_.extend(Backbone.Model.prototype, Backbone.Validation.mixin);
Of course, if you use this option the callbacks to update the view is not executed, since there is no way of knowing what view a model belongs to.
You can specify an error message per attribute:
MyModel = Backbone.Model.extend({
validation: {
email: {
required: true,
pattern: 'email',
msg: 'Please enter a valid email'
}
}
});
Or, you can specify an error message per validator:
MyModel = Backbone.Model.extend({
validation: {
email: [{
required: true,
msg: 'Please enter an email address'
},{
pattern: 'email',
msg: 'Please enter a valid email'
}]
}
});
All validated models has a method that is used to force an validation to occur: model.validate()
.
All validated models has a method that is used to check for the model's valid state: model.isValid()
.
isValid
returns undefined
when no validation has occurred and the model has validation, otherwise, true
or false
.
If you pass true
as an argument, this will force an validation before the result is returned.
If you are using Backbone v0.5.3, only attributes that are being set are validated.
If you are using Backbone v0.9.1, all attributes in a model will be validated. However, if for instance name
never has been set (either explicitly or with a default value) that attribute will not be validated before it gets set.
This is very useful when validating forms as they are populated, since you don't want to alert the user about errors in input not yet entered.
If you need to validate entire model (both attributes that has been set or not) you can call validate()
or isValid(true)
on the model.
The Backbone.Validation.callbacks
contains two methods: valid
and invalid
. These are called after validation of an attribute is performed.
The default implementation of invalid
tries to look up an element within the view with an name attribute equal to the name of the attribute that is validated. If it finds one, an invalid
class is added to the element as well as a data-error
attribute with the error message. The valid
method removes these if they exists.
The default implementation of these can of course be overridden:
_.extend(Backbone.Validation.callbacks, {
valid: function(view, attr, selector) {
// do something
},
invalid: function(view, attr, error, selector) {
// do something
}
});
You can also override these per view when binding:
var SomeView = Backbone.View.extend({
render: function(){
Backbone.Validation.bind(this, {
valid: function(view, attr) {
// do something
},
invalid: function(view, attr, error) {
// do something
}
});
}
});
If you need to look up elements in the view by using for instance a class name or id instead of name, there are two ways to configure this.
You can configure it globally by calling:
Backbone.Validation.configure({
selector: 'class'
});
Or, you can configure it per view when binding:
Backbone.Validation.bind(this.view, {
selector: 'class'
});
If you have set the global selector to class, you can of course set the selector to name or id on specific views.
Sometimes it can be useful to update the model with invalid values. Especially when using automatic modelbinding and late validation (e.g. when submitting a form).
You can turn this on globally by calling:
Backbone.Validation.configure({
forceUpdate: true
});
Or, you can turn it on per view when binding:
Backbone.Validation.bind(this.view, {
forceUpdate: true
});
Or, you can turn it on for one set operation only (Backbone.VERSION >= 0.9.1 only):
model.set({attr: 'invalidValue'}, {
forceUpdate: true
});
Note that when switching this on, Backbone's error event is no longer triggered.
After validation is performed, the model will trigger some events with the result of the validation.
The validated
event is triggered after validation is performed, either it was successful or not. isValid
is true
or false
depending on the result of the validation.
model.bind('validated', function(isValid, model, attrs) {
// do something
});
The validated:valid
event is triggered after a successful validation is performed.
model.bind('validated:valid', function(model) {
// do something
});
The validated:invalid
event is triggered after an unsuccessful validation is performed.
model.bind('validated:invalid', function(model, attrs) {
// do something
});
var SomeModel = Backbone.Model.extend({
validation: {
name: function(value, attr, computedState) {
if(value !== 'something') {
return 'Name is invalid';
}
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
name: {
fn: function(value, attr, computedState) {
if(value !== 'something') {
return 'Name is invalid';
}
}
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
name: 'validateName'
},
validateName: function(value, attr, computedState) {
if(value !== 'something') {
return 'Name is invalid';
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
name: {
fn: 'validateName'
}
},
validateName: function(value, attr, computedState) {
if(value !== 'something') {
return 'Name is invalid';
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
name: {
required: true | false
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
name: {
required: function() {
return true | false;
}
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
termsOfUse: {
acceptance: true
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
age: {
min: 1
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
age: {
max: 100
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
age: {
range: [1, 10]
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
postalCode: {
length: 4
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
password: {
minLength: 8
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
password: {
maxLength: 100
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
password: {
rangeLength: [6, 100]
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
country: {
oneOf: ['Norway', 'Sweeden']
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
password: {
required: true
},
passwordRepeat: {
equalTo: 'password'
}
}
});
var SomeModel = Backbone.Model.extend({
validation: {
email: {
pattern: 'email'
}
}
});
where the built-in patterns are:
- number
- url
- digits
or specify any regular expression you like:
var SomeModel = Backbone.Model.extend({
validation: {
email: {
pattern: /^sample/
}
}
});
See the wiki for more details about the validators.
If you have custom validation logic that are used several places in your code, you can extend the validators with your own. And if you don't like the default implementation of one of the built-ins, you can override it.
_.extend(Backbone.Validation.validators, {
myValidator: function(value, attr, customValue, model) {
if(value !== customValue){
return 'error';
}
},
required: function(value, attr, customValue, model) {
if(!value){
return 'My version of the required validator';
}
},
});
var Model = Backbone.Model.extend({
validation: {
age: {
myValidator: 1 // uses your custom validator
}
}
});
The validator should return an error message when the value is invalid, and nothing (undefined
) if the value is valid. If the validator returns false
, this will result in that all other validators specified for the attribute is bypassed, and the attribute is considered valid.
If you have custom patterns that are used several places in your code, you can extend the patterns with your own. And if you don't like the default implementation of one of the built-ins, you can override it.
_.extend(Backbone.Validation.patterns, {
myPattern: /my-pattern/,
email: /my-much-better-email-regex/
});
var Model = Backbone.Model.extend({
validation: {
name: {
pattern: 'myPattern'
}
}
});
If you don't like the default error messages there are several ways of customizing them.
You can override the default ones globally:
_.extend(Backbone.Validation.messages, {
required: 'This field is required',
min: '{0} should be at least {1} characters'
});
The message can contain placeholders for arguments that will be replaced:
{0}
will be replaced with the name of the attribute being validated{1}
will be replaced with the allowed value configured in the validation (or the first one in a range validator){2}
will be replaced with the second value in a range validator
- Support for Backbone v0.9.1
- Support for object/nested validation (Fixed #20, thanks to AndyUK)
- Support for binding to a view with a collection of models
- Support for mixing in validation on
Backbone.Model.prototype
- Context (this) in custom validators is the
Backbone.Validation.validators
object - Calling
unbind
on a view without model no longer throws (Fixes #17) - Method validators get a computed model state (i.e. the state of the model if the current set operation succeeds) as the third argument (Fixes #22)
forceUpdate
can be specified when settings attributes (Backbone.VERSION >= 0.9.1 only)
isValid
returnsundefined
when no validatation has occured and the model has validation- Passing
true
toisValid
forces an validation - When specifying multiple validators for one attribute, all can have it's own error message (thanks to GarethElms)
- method validator and named method validator can be combined with other built-in validators
- acceptance validator accepts 'true' as valid (Fixes issue #12)
- Can configure per view or globally to force update the model with invalid values. This can be very useful when using automatic modelbinding and late validation (e.g. when submitting the form)
- email pattern is case insensitive
- Breaking changes (unfortunate, but necessary):
setDefaultSelector
is removed, and you need to callconfigure({selector: 'class'})
instead
- Fixed issue with validated events being triggered before model was updated
- Added model and an array of invalid attribute names as arguments to the events
- Triggers events when validation is performed (thanks to GarethElms):
- 'validated' with
true
orfalse
as argument - 'validated:valid' when model is valid
- 'validated:invalid' when model is invalid
- 'validated' with
- Named method validator get the name of the attribute being validate as the second argument (thanks to goreckm)
error
argument passed to the error event raised by Backbone contains an array of errors when validating multiple attributed in one go, otherwise a string- Breaking changes (unfortunate, but necessary):
- isValid attribute (
model.get('isValid')
) is replaced with a methodmodel.isValid()
- Default selector is 'name' instead of 'id'
- isValid attribute (
- New validators:
- named method
- length
- acceptance (which is typically used when the user has to accept something (e.g. terms of use))
- equalTo
- range
- rangeLength
- oneOf
- Added possibility to validate entire model by explicitly calling
model.validate()
without any parameters. (Note:Backbone.Validation.bind(..)
must still be called) - required validator can be specified as a method returning either
true
orfalse
- Can override the default error messages globally
- Can override the id selector (#) used in the callbacks either globally or per view when binding
- Improved email pattern for better matching
- Added new pattern 'digits'
- Possible breaking changes:
- Removed the unused msg parameter when adding custom validators
- Number pattern matches negative numbers (Fixes issue #4), decimals and numbers with 1000-separator (e.g. 123.000,45)
- Context (this) in the method validators is now the model instead of the global object (Fixes issue #6)
- All validators except required and acceptance invalidates null, undefined or empty value. However, required:false can be specified to allow null, undefined or empty value
- Breaking changes (unfortunate, but necessary):
- Required validator no longer invalidates false boolean, use the new acceptance validator instead
- Fixed issue where min and max validators treated strings with leading digits as numbers
- Fixed issue with undefined Backbone reference when running Backbone in no conflict mode
- Fixed issue with numeric string with more than one number not being recognized as a number
- Initial release