MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come leggere una raccolta che dipende da un'altra in Meteor

Codice lato server:

Meteor.publish("latestPost", function () {
  var post = Posts.find({}, {sort:{created:-1}}).fetch()[0];
  console.log("publish : " + post.title);
  return [
    Posts.find({_id: post._id}),
    Comments.find({postId: post._id})
  ];
});

Codice lato cliente:

 this.route('home', {
    path: '/',
    template: 'home',
    waitOn: function () {
      return [
        Meteor.subscribe('latestPost')
      ];
    },
    data:function(){
      return {
       post:Posts.findOne(),
       comments:Comments.find()
      };
    }
   });

Controlla questo repository per vedere l'intero esempio.

Dopo che l'utente passa a un altro percorso, le sottoscrizioni vengono automaticamente interrotte.