sql >> Databáze >  >> NoSQL >> MongoDB

Schéma a subdocs v mongoose.js

Možná discriminators může být pro váš případ lepší volbou.

Ukázkové kódy jsou uvedeny níže

var options = {discriminatorKey: 'contents'};
const postSchema = new mongoose.Schema({
  published: Date,
  summary: String,
  type: String,
}, options);
var Post = mongoose.model('Post', postSchema);

const tweetSchema = new mongoose.Schema({
  tweetUrl: {type: string, trim: true}
  length: Number
}, options);
var Tweet = Post.discriminator('Tweet', tweetSchema);

const blogSchema = new mongoose.Schema({
  title: String,
  edits: [Date],
  slug: { type: String, trim: true},
  body: String
}, options);
var Blog = Post.discriminator('Blog', blogSchema );



  1. Jak vrátím pořadí příspěvků MongoDB podle času Oblíbené uživatelem?

  2. Zookeeper vs In-memory-data-grid vs Redis

  3. Spring Boot propojuje Mysql a MongoDb

  4. Seskupení a součet podle procenta pozice MongoDb Agregace