我有两个模型报价和国家,他们没有任何关系,但在我的新报价表格中,我想要一个选择标签来选择报价的国家。
这是我的新动作:
def new
@countries = Country.all
@offer = Offer.new
end
这是我的观点
<%= form_for(@offer) do |f| %>
<%= f.select @countries %> #I know this is wrong.
<%= f.submit %>
<% end %>
任何想法。
谢谢