Mongoose OR模式验证

时间:2013-11-02 18:28:41

标签: node.js mongodb validation mongoose schema

我有一个字段,它将是两个对象之一(存储的信用卡或给定的信用卡):

  payment_method:
    cc_token: String
    security_code: String
  payment_method:
    number: String
    security_code: String
    expiration_month: Number
    expiration_year: Number
    billing_address: 
      _type: String
      first_name: String 
      last_name: String
      address_line1: String
      address_line2: String
      zip_code: String
      city: String 
      state: String
      phone_number: String

我知道传递的数据将匹配其中一个,但不是两者都匹配。有没有办法为验证指定某种OR结构?

1 个答案:

答案 0 :(得分:1)

您没有提供包含架构的示例,但是,有许多方法可以验证。

我做的一件事是为Schema指定了“mixed”类型,允许任何类型用于可能包含任何类型的字段。

function validatePaymentMethod(value) {
  if (!value) { return false; }
  // put some logic that checks for valid types here...
  if (value.cc_token && value.billing_address) { 
    return false;
  }
  return true;
}

var OrderSchema = new mongoose.Schema({
   payment_method : { type:  mongoose.Schema.Types.Mixed, 
                  validate: [validatePaymentMethod, 'Not valid payment method'] }
});

var Order = mongoose.model("Order", OrderSchema);
var o = new Order();
o.payment_method = { cc_token: 'abc', billing_address: 'Street' };
o.validate(function(err) {
   console.log(err);
});

其他文件已记录在案here