Publish and subscribe to a single object Meteor js
问题 How to publish single objects seems not clear enough to me. Please what's the best way to handle this. This code snippet does not display anything on the view. Helper file singleSchool: function () { if (Meteor.userId()) { let myslug = FlowRouter.getParam('myslug'); var subValues = Meteor.subscribe('SingleSchool', myslug ); if (myslug ) { let Schools = SchoolDb.findOne({slug: myslug}); if (Schools && subValues.ready()) { return Schools; } } } }, Publish file Meteor.publish('SingleSchool',