简体   繁体   中英

Use with_options with the Rails form helper

I have form that has :prompt => "Select" on many inputs:

f.select :country, :prompt => "Select"
f.select :city, :prompt => "Select"
...

Is there a way to wrap this using with_options and DRY it up?

This should work :)

f.with_options :prompt => "Select" do |form|
  form.select :country
  form.select :city
end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM