好的,我正在使用Rails 5和Ruby的最新稳定版本。我试图做的是选择框在编辑视图中选择了正确的选项。
这是我到目前为止所拥有的 create_users
class CreateUsers < ActiveRecord::Migration[5.0]
def change
create_table :users do |t|
t.string :email
t.string :password
t.integer :user_type_id
t.timestamps
end
end
end
class CreateUserTypes < ActiveRecord::Migration[5.0]
def change
create_table :user_types do |t|
t.string :name
t.text :description
t.timestamps
end
end
end
这些表之间没有关系,所有UserType只是一个支持表。 我可以让它输出下拉并保存到数据库我只是无法在编辑时显示相应的选定选项。
这是我的表单代码
<%= form_for(user) do |f| %>
<% if user.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(user.errors.count, "error") %> prohibited this user from being saved:</h2>
<ul>
<% user.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :email %>
<%= f.text_field :email %>
</div>
<div class="field">
<%= f.label :password %>
<%= f.text_field :password %>
</div>
<div class="field">
<%= f.label :user_type_id %>
<%#= select_tag('user_type', options_for_select(UserType.all.collect {|ut| ut.name ut.id})) %>
<% user_type_array = UserType.all().map { |type| [type.name, type.id]} %>
<%= f.select(:user_type_id, options_for_select(user_type_array), :selected => f.object.user_type_id) %>
<%#= options_from_collection_for_select(UserType.all(), :id, :name) #just outputs text %>
<%#= f.select_tag('user_type_id', options_from_collection_for_select(UserType.all(), :id, :name)) %>
</div>
<%= params.inspect %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
答案 0 :(得分:1)
使用options_for_select中的值,它需要一个可选的selected
参数:
options_for_select(user_type_array, f.object.user_type_id)