schema mongoose如果otherfield为true,则为必填字段

时间:2014-10-25 07:47:57

标签: node.js mongodb mongoose

我有像这样的猫鼬模式:

var SomeSchema = new Schema({
    //Indicates whether the field failed import.
    importFailed: {type: Boolean, "default": false},

    //Represents the error message.
    errorMessage: {type: String}
});

请帮助我,如何制作架构字段" errorMessage" 必需如果字段" importFailed"是的。

之前感谢

0 个答案:

没有答案