“Mongoose Virtual Populate Tidak Bekerja” Kode Jawaban

Mongoose Virtual Populate Tidak Bekerja

// virtual pupulate
AuthorSchema.virtual('posts', {
  ref: 'BlogPost',
  localField: '_id',
  foreignField: 'author'
})

// add this in your schema if vritual is not work, this method working for me
AuthorSchema.set('toObject', { virtuals: true })
AuthorSchema.set('toJSON', { virtuals: true })
Restu Wahyu Saputra

Mongoose virtual populate

// Specifying a virtual with a `ref` property is how you enable virtual
// population
AuthorSchema.virtual('posts', {
  ref: 'BlogPost',
  localField: '_id',
  foreignField: 'author'
});

const Author = mongoose.model('Author', AuthorSchema, 'Author');
const BlogPost = mongoose.model('BlogPost', BlogPostSchema, 'BlogPost');
Selfish Skipper

Jawaban yang mirip dengan “Mongoose Virtual Populate Tidak Bekerja”

Pertanyaan yang mirip dengan “Mongoose Virtual Populate Tidak Bekerja”

Lebih banyak jawaban terkait untuk “Mongoose Virtual Populate Tidak Bekerja” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya