2013-09-03 4 views

Répondre

1

Une façon de parcourir les commentaires seraient être comme suit:

db.posts.find().forEach(
    function(doc) { 
    // iterate over the comments in your preferred javascript way 
    var i; 
    for (i=0; i<doc.comments.length; ++i) { 
     // Do whatever you want with doc.comments[i] here 
    } 
    } 
) 
Questions connexes