How can I make Meteor subscriptions dynamic?
问题 I am looking to make my meteor subscriptions dynamic/reactive. Right now, I have a page that subscribes to a collection of templates based on a template ID that is assed to it: Meteor.subscribe('templates', templateId) On the same page, I have a dropdown list of template names and ID's: <p><label>Select Template</label></p> <select id="templateSelect" name="templateSelect"> <option disabled selected> Select Template </option> {{#each orderTemplates}} <option value="{{this._id}}">{{this