如何使用RoR助手添加组合框?

时间:2010-07-09 14:58:11

标签: ruby-on-rails database

我有一个像这样的人:

<% form_for(@user) do |f| %>
  <%= f.error_messages %>

  <p>
    <%= f.label :username %><br />
    <%= f.text_field :username %>
  </p>
  <p>
    <%= f.label :email %><br />
    <%= f.text_field :email %>
  </p>
  <p>
    <%= f.label :password %><br />
    <%= f.password_field :password %>
  </p>             
 <p>
    <%= f.label :password_confirmation %><br />
    <%= f.password_field :password_confirmation %>
  </p>
    <p>
        <%= f.label :role %> <br/>
        <%= f.text_field :role%>
    </p>
  <p>
    <%= f.submit 'Create' %>
  </p>
<% end %>            

在数据库中,role是一个“Char”字段。我希望它与文本字段不同,用户可以选择“教师”,“学生”,如果用户选择“教师”,数据库将存储“T”,否则,它将存储“S”。我怎么能这样做?我有必要在数据库中添加“用户角色”表,然后与用户建立关系吗?但有必要这样做吗?谢谢你。

1 个答案:

答案 0 :(得分:18)

参考selectoptions_for_select

<%= f.select :role, options_for_select([["Teacher", "t"], ["Student", "s"]]) %>