以下代码有什么问题?
(function(){
window.App = {
Models: {},
Collections: {},
Views: {}
};
window.template = function(id) {
return _.template($('#' + id).html());
};
App.Models.Task = Backbone.Model.extend({
defaults:{
title: '',
priority: 0
},
validate: function(attrs, options){
if (attrs.priority < 0){
return 'Priority cannot be negative.';
}
}
});
var task = new App.Models.Task ({ title: 'Sample Task', priority: 5 });
task.on('invalid', function(model, error) { console.log(error); })
task.save({ priority: -9 }); // Should not pass validation
console.log(task.validationError); // Prints a validation error
console.log(task.toJSON()); // Model is updated with -9
console.log(task.isValid()); // false
})();
输出:
Priority cannot be negative. app.js:27
Priority cannot be negative. app.js:30
Object {title: "Sample Task", priority: -9} app.js:32
Priority cannot be negative. app.js:27
false
我目前正在观看一个视频教程,它基于老版本的主干.js,其中默认情况下对set
方法强制执行验证。但在当前版本中,默认情况下对save
方法强制执行验证。
但即使它不是一个有效值并且验证没有通过,为什么它仍然将值设置为 -9。验证不通过时不应该不设置值吗?