0

我有一个使用haml的表单中的下拉菜单代码

= f.select :people, options_for_select(['Kid','Youth','Man','woman'])

表单提交后,值存储在 db 中。现在在编辑表单中,我想要这个下拉菜单,其中包含根据数据库中存储的值选择的值。如何使用haml做到这一点

4

1 回答 1

1
= f.select :people, options_for_select([your options here], selected: @variable.people)

其中@variable 是您获得选项的对象的名称。

于 2012-08-05T21:49:41.273 回答