MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

trova({}) restituisce un array vuoto mangusta

Manca la parte di creazione dello schema, utilizzando mongoose.Schema ,

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