Meteor Dropdown list get and set

前端 未结 2 742
情歌与酒
情歌与酒 2021-02-06 11:30

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({
    ca         


        
2条回答
  •  长情又很酷
    2021-02-06 11:56

    Template.categories.helpers({
        categories: function(){
            return ["facebook", "news", "tv", "tweets"]
        }
    });
    

    And you should consider changing template name and helper, they shouldn't be the same.

提交回复
热议问题