Table: RailsNotes
User: dreamable
Created at: 2023-05-10 01:51:37 UTC
Updated at: 2023-05-10 01:51:37 UTC
Reference:(Table ID 3, Record ID 55)

标题 :
Rails select with html options.
笔记 :

must put an empty option if want to use html options, e.g. class.

    # class won't work. 
    <%= form.select:status, User.statuses.keys.to_a, class:'form-control col'%> 
    # works
    <%= form.select:status, User.statuses.keys.to_a, {},class:'form-control col'%>
Tag: