सर्वर साइड कोड:
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})
];
});
क्लाइंट साइड कोड:
this.route('home', {
path: '/',
template: 'home',
waitOn: function () {
return [
Meteor.subscribe('latestPost')
];
},
data:function(){
return {
post:Posts.findOne(),
comments:Comments.find()
};
}
});
इसे जांचें रिपॉजिटरी पूरा उदाहरण देखने के लिए।
उपयोगकर्ता द्वारा दूसरे मार्ग में परिवर्तन करने के बाद, उप-अभिलेखों को स्वचालित रूप से रोक दिया जा रहा है।