我有一个用户可以选择的列表:
NOTIFY = [['Only in reports', 'only_in_reports'],['Immediately', 'immediately']]
<%= f.select(:notifications, NOTIFY) %>
键/秒值存储在数据库中,例如'only_in_reports'
。
当我在节目视图中显示该值时,它会显示该键,例如&#39; only_in_reports
&#39;而不是&#39; Only in reports
&#39;。
我如何选择并显示正确的值?
答案 0 :(得分:0)
愿这对你有用。
<%= f.select :notifications, options_for_select(NOTIFY.html_safe)%>