MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

find({}) gibt ein leeres Array Mungo zurück

Ihnen fehlt der Schemaerstellungsteil mit mongoose.Schema ,

const schoolNotices = mongoose.model("schoolNotices",
    new mongoose.Schema(
        {
            title:{
                type: String
            },
            date:{
                type:String
            },
            details:{
                type:String
            }
        },
        { collection: "schoolNotices" } // optional
    )
);