rails: fields_for select

后端 未结 2 1054
无人及你
无人及你 2021-02-04 12:17

In a view that I have, I am using fields_for to display form data for a relational table. However, part of this form will have select lists to choose from. I see there are lab

2条回答
  •  不知归路
    2021-02-04 12:51

    There are several select helper methods which you can use. The most common being collection_select. This is great if you have a belongs_to association on the model and you want to use a select menu to set this.

    <%= f.collection_select :category_id, Category.all, :id, :name %>
    

    For other situations there is the more generic select method. Here you can supply an array of options you want to provide.

    <%= f.select :priority, [["Low", 1], ["Medium", 2], ["High", 3]] %>
    

    The first value in each array element is the name of the select option, the second is the value which will be assigned to the attribute.

    There are many other select menus (for dates and times) but the above two should cover most situations. These methods work on both form_for or fields_for.

提交回复
热议问题