gpt4 book ai didi

ruby-on-rails - Formtastic 选择列表

转载 作者:行者123 更新时间:2023-12-03 16:21:07 27 4
gpt4 key购买 nike

<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %>

<% f.inputs do %>
<%= f.input :name %>
<%= f.input :price %>
<%= f.input :pno %>
<%= f.input :description %>
<%= f.input :shop_category %>
<% end %>
<% end %>

产品属于Shop_category,Shop_category 属于Sh​​op。

如何更改线路:
<%= f.input :shop_category %>

要仅显示属于 Shop 的 shop_categories,例如 15,而不是在选择框中显示所有 shop_categories ?

最佳答案

选择输入有一个 :collection 选项。

<%= form.input :shop_category, :collection => @shop.ShopCategories %>

因此,您可以通过为该集合属性提供 Hash,以所需条件显示您需要的类别。

关于ruby-on-rails - Formtastic 选择列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1637845/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com