“Как подключить две модели в мангузе” Ответ

Как подключить две модели в мангузе

var mongoose = require('mongoose');


var foodSchema = new mongoose.Schema({
   name: String,
   image: String,
   notify: String,
   createdAt: {type: Date, default: Date.now},
    author: {
      id: {
         type: mongoose.Schema.Types.ObjectId,
         ref: "User"
      },
      username: String
   },
});


   module.exports = mongoose.model("food", foodSchema);
Gleaming Gemsbok

Как подключить две модели в мангузе

const mongoose = require('mongoose');
const passportLocalMongoose = require('passport-local-mongoose');


var UserSchema = new mongoose.Schema({
    username: String,
    password: String,
    repassword: String,
    email: String

})

UserSchema.plugin(passportLocalMongoose);

module.exports = mongoose.model("User", UserSchema);
Gleaming Gemsbok

Ответы похожие на “Как подключить две модели в мангузе”

Вопросы похожие на “Как подключить две модели в мангузе”

Больше похожих ответов на “Как подключить две модели в мангузе” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования