Rails simple_form_for 关联选择文本
我正在使用 Rails 3.0、Ruby 1.9.2 和 Plataformatec simple_form gem。
下面的代码呈现一个带有消费者名称的选择框。我希望它显示一个带有消费者位置的选择框。我该怎么做?
查看代码:
<%= simple_form_for @request do |f| %>
<%= f.association :consumer, :collection => Consumer.all, :prompt => "Choose a location" %>
<%= f.button :submit %>
<% end %>
型号代码:
Consumer < ActiveRecord::Base
attr_accessor :name, :location
end
I am using Rails 3.0, Ruby 1.9.2 and the Plataformatec simple_form gem.
The code below renders a select box with Consumer names. I want it to show a select box with Consumer locations instead. How do I do that?
View code:
<%= simple_form_for @request do |f| %>
<%= f.association :consumer, :collection => Consumer.all, :prompt => "Choose a location" %>
<%= f.button :submit %>
<% end %>
Model code:
Consumer < ActiveRecord::Base
attr_accessor :name, :location
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 label_method 执行此操作
You would do this via label_method