如何实现 Canjs 的验证?我遇到了一些麻烦。在他们的指南页面上,他们这样做:
Contact = can.Observe({
init : function(){
// validates that birthday is in the future
this.validate("birthday",function(birthday){
if(birthday > new Date){
return "your birthday needs to be in the past"
}
})
}
},{});
但是当我尝试这个时,我没有任何成功。