Meteor Dropdown list get and set
问题 What is the best way to get and select values from a dropdown list (and also in radio) in Meteor. I have created a helper: Template.categories.helpers({ categories: ["facebook", "news", "tv", "tweets"] }); and in html ... <select class="form-control" id="category"> {{> categories}} </select> ... <template name="categories"> <option disabled="disabled" selected="selected">Please Select</option> {{#each categories}} <option value="{{this}}">{{this}}</option> {{/each}} </template> In case of