BackboneJS-Model validationError
Descrição
É o valor retornado pelo método validate () que exibe o erro de validação, se a validação falhar ou após o evento inválido ser disparado.
Sintaxe
|
Exemplo
<!DOCTYPE html>
<head>
<title>Model Example</title>
<script src =" https://code.jquery.com/jquery-2.1.3.min.js"
type = "text/javascript"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
type = "text/javascript"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
type = "text/javascript"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
type = "text/javascript"></script>
</head>
<body>
<script type = "text/javascript">
var Person = Backbone.Model.extend({
defaults: {
name: 'john',
age: 25,
occupation: 'working'
},
initialize : function(){
this.on("invalid",function(model,error){
document.write(error);
});
},
validate: function(attributes) {
if ( attributes.age < 25 ) {
return 'please enter the correct age!!! ';
}
if ( ! attributes.name ) {
return 'please enter the name!!!';
}
},
});
var person = new Person();
person.on('invalid', function() {
this.arguments;
});
person.set({ age : '20' }, { validate : true });
</script>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como o código acima funciona -
Salvar o código acima em validationError.htm Arquivo
Abra este arquivo HTML em um navegador.