0

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

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

谢谢

4

1 回答 1

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

上面的代码会选择c700

于 2012-10-30T21:31:17.850 回答