2

私はこの性質の何かを求めています

//validation rules in model "User"
attributes: {
    age: {
        required: true,
        type: 'numeric'
    }
},    

//now in controller, i want to be able to do this
Recipe.validate({age: 'An invalid age because it is a string. I except a validation error as response'});

問題は、それが機能しないことです.. beforeValidate が利用できないなどについて不平を言います

4

1 に答える 1

2

にコールバックを渡す必要があります.validate:

Recipe.validate({age: 'blah'}, function(err){
  if (err && err.invalidAttributes) {
    console.log(err.invalidAttributes); 
  } else {
    // model is valid
  }
});
于 2014-09-15T23:06:06.643 に答える