Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloudsben/320d55dc0c29dbbd86e4472eee19be7f to your computer and use it in GitHub Desktop.
Save cloudsben/320d55dc0c29dbbd86e4472eee19be7f to your computer and use it in GitHub Desktop.
simple form association collection option
<%= f.association :country, label: "请选择国家",
disabled: true, collection: Proc.new{ Country.all.map{ |c| [c.name, c.id, {data_country: c.short_name}] } } %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment