0
我如何實現Canjs的驗證?我遇到了一些麻煩。在他們的指導頁面上,他們這樣做: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"
}
})
}
},{});
但是,當我嘗試這個,我沒有任何成功。
請參閱CanJS新版本中的[can.Map](http://canjs.com/docs/can.Map.validations.html)。 – Radek
小提琴不再適用...很多連接到CanJS外部資源的鏈接。 –
已修復。再次吸取教訓:切勿直接鏈接到/ latest。 – Daff