BackboneJS - Model Validate
描述
它验证用户提供的模型和输入。如果输入无效,则返回指定的错误消息,如果输入有效,则不指定任何内容,仅显示结果。
语法
model.validate(attributes,options)
参数
attributes − 这些属性定义模型的属性。
options − 它包含 true 作为验证属性的选项。
示例
<!DOCTYPE html> <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> </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 'Person age is less than 25, 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>
输出
让我们执行以下步骤来查看上述代码的工作原理 −
将上述代码保存在 validate.htm 文件中。
在浏览器中打开此 HTML 文件。