我有一个可以init
运行的 Can JS 模型this.validateNonBlank("title");
。onblur
当我跳出该title
字段时,如何触发该验证运行?现在它只在另一个元素触发change
事件时触发。
can.Model.Cacheable("CMS.Models.Program", {
root_object : "program"
, root_collection : "programs"
...
, links_to : {
"Regulation" : "ProgramDirective"
, "Policy" : "ProgramDirective"
...
, "Market" : {}
}
, init : function() {
var that = this;
this.validateNonBlank("title");
this._super.apply(this, arguments);
}
}, {
});
(完整的代码在这里。)