如何预先选择从数据库到select_tag的信息下拉列表?

时间:2012-10-30 21:17:36

标签: ruby-on-rails html-select

我有这一行,在作为表单提交后,C7000或C3000被存储为字符串。对于编辑页面,我无法将存储的值作为下拉列表中的预加载选项而不是"选择一个"。我做错了什么?

= select_tag :enclosure_model, "<option>Select One</option><option>C7000</option><option>C3000</option>".html_safe, :disabled => false

由于

1 个答案:

答案 0 :(得分:0)

<%= select_tag :enclosure_model, helper.options_for_select([["select one", ""], ["c700"], "c700"], "c700"), :disabled => false %>

以上代码将选择c700