Ich habe Category
Modell:
Category:
...
articles: [{type:ObjectId, ref:'Article'}]
Artikelmodell enthält ref to Account model
.
Article:
...
account: {type:ObjectId, ref:'Account'}
Also, mit ausgefülltem articles
Kategoriemodell wird sein:
{ //category
articles: //this field is populated
[ { account: 52386c14fbb3e9ef28000001, // I want this field to be populated
date: Fri Sep 20 2013 00:00:00 GMT+0400 (MSK),
title: 'Article 1' } ],
title: 'Category 1' }
Die Frage ist: Wie wird ein Unterfeld (Konto) eines ausgefüllten Feldes ([Artikel]) ausgefüllt? So mache ich es jetzt:
globals.models.Category
.find
issue : req.params.id
null
sort:
order: 1
.populate("articles") # this populates only article field, article.account is not populated
.exec (err, categories) ->
console.log categories
Ich weiß, dass es hier diskutiert wurde: Mungo: Besiedle ein besiedeltes Feld, aber es wurde keine wirkliche Lösung gefunden
.populate({path : 'userId', populate : {path : 'reviewId'}}).exec(...)
scheint eine rekursive Logik zu sein, und das macht Sinn. es funktioniert!