“Использование мангуза с узлом JS” Ответ

мангуз в nodem js

const kittySchema = new mongoose.Schema({
  name: String
});
Good Gemsbok

Почему мы используем монгуст

Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node. js. It manages relationships between data, provides schema validation, and is used to translate between objects in code and the representation of those objects in MongoDB.
Helpful Hummingbird

Узел JS Mongoose

const db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
  // we're connected!
});
Xerothermic Xenomorph

Использование мангуза с узлом JS

// Create an instance of model SomeModel
var awesome_instance = new SomeModel({ name: 'awesome' });

// Save the new model instance, passing a callback
awesome_instance.save(function (err) {
  if (err) return handleError(err);
  // saved!
});
Yellowed Yak

мангуз в nodem js

await fluffy.save();
fluffy.speak();
Good Gemsbok

мангуз в nodem js

// NOTE: methods must be added to the schema before compiling it with mongoose.model()
kittySchema.methods.speak = function speak() {
  const greeting = this.name
    ? "Meow name is " + this.name
    : "I don't have a name";
  console.log(greeting);
};

const Kitten = mongoose.model('Kitten', kittySchema);
Good Gemsbok

Ответы похожие на “Использование мангуза с узлом JS”

Вопросы похожие на “Использование мангуза с узлом JS”

Больше похожих ответов на “Использование мангуза с узлом JS” по JavaScript

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

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