Min和Max周围的Mongoose行为与Number

时间:2016-01-20 05:23:14

标签: node.js mongoose

我有像这样的Mongoose计划......

lightbox_opacity:{type:Number, min:0, max:1}

我有2个问题......

  1. 当我尝试插入字符串“abc”时,它会静静地忽略此字段插入。 Schema中的其余字段已成功插入。我的印象是它会引发异常。是否可以这样做?

  2. 如果我尝试插入5,它只是允许它,它似乎是min& max根本没有发挥作用。

  3. 我错过了什么?

1 个答案:

答案 0 :(得分:1)

validation可以帮到你。一个例子如下。

var min = [0, 'The value of path `{PATH}` ({VALUE}) is beneath the limit ({MIN}).'];
var max = [1, 'The value of path `{PATH}` ({VALUE}) exceeds the limit ({MAX}).'];
var numberschema = new mongoose.Schema({
    n: {type: Number, min: min, max: max}
 });

var numberschema = mongoose.model('number', numberschema, 'number');

var insertDocuments = function(db) { 
    var a = new numberschema({
        n: 5
    });

    console.log(a);       

    a.validate(function(err) {
        if (err)
            console.log(err);
    });
    a.save(function (err, ack) {
        if (err) {
            console.log('Mongoose save error : ' + err);
        } else { 
            console.log('Mongoose save successfully...'); 
        }
    }); 
};

尝试插入5时,错误如下

{ [ValidationError: Validation failed]
  message: 'Validation failed',
  name: 'ValidationError',
  errors:
   { n:
      { [ValidatorError: The value of path `n` (5) exceeds the limit (1).]
        message: 'The value of path `n` (5) exceeds the limit (1).',
        name: 'ValidatorError',
        path: 'n',
        type: 'max',
        value: 5 } } }
Mongoose save error : ValidationError: The value of path `n` (5) exceeds the lim
it (1).

尝试插入abc时,错误如下

Mongoose save error : CastError: Cast to number failed for value "abc" at path "
n"