const contactSchema = mongoose.Schema({
name: {
type:String,
required: true
},
mo_no: {
type: Number,
required: true
},
creator: {
type: mongoose.Schema.Types.ObjectId,
required: true
}
});
const Contact = module.exports = mongoose.model('Contact', contactSchema);
Когда я выполняю этот сервер, отправляется 200 статусов, но данные добавляются.Любое решение?