新的.html.erb
Price: <%= f.collection_select :price_ids, Price.all, :id,:name,prompt: true %> JD
在控制器中:
def dress_attributes
dress_attributes = params.require(:dress).permit(:name,:email,:phone,:description,:image,:image2,[:price_ids: []})
end
在show.html.erb 中:
Price: <% @dress.prices.each do |s| %>
<%= s.name %>
<% end %>`
而且价格没有显示。
当我更改为时有什么collection_select
问题collection_checked_boxes
?它有效,但我想要collection_select
.