标签: database mongodb express model reference
我需要将参考ID作为可选参数,我正在尝试按照以下步骤操作:
fieldName: { type: Schema.Types.ObjectId, index: true, ref: "AnotherCollection", required: false },
我试图通过设置required来使其可选:false,但是它不起作用。使其成为可选的可能方式是什么,或者没有办法。