我有一个使用haml
的表单中的下拉菜单的代码= f.select :people, options_for_select(['Kid','Youth','Man','woman'])
表单提交后,该值存储在db中。现在在编辑表单中,我想要这个下拉菜单,其值根据数据库中的存储值选择。如何使用haml
答案 0 :(得分:1)
= f.select :people, options_for_select([your options here], selected: @variable.people)
其中@variable是您正在获取选项的对象的名称。