在 Rails 应用程序的数据库中存储多选

发布于 2025-01-01 17:52:39 字数 115 浏览 1 评论 0原文

我有一个“位置”模型,其中包含标题、描述和类型。类型可以是“酒吧”、“餐厅”等。我希望在我的视图中有一个选择框,其中包含具有多个可用选项的各种选项。

我将如何解析控制器中的选择框并将其存储在数据库中?

I have a model for "Location" which has a title, description, and type. The type can be a "Bar", "Restaurant", etc. I want to have a select box in my view with the various options with multiple selections available.

How would i go about parsing the select box in my controller and storing it in the database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹泡泡o 2025-01-08 17:52:39

如果您想在位置表单中使用类型作为选择框,您可以将可能的类型放入位置类中。

class Location < ActiveRecord::Base
  attr_accessible :type
  TYPES = ["Bar", "Restaurant"]
end

看法

<%= f.select(:type, options_for_select(Location::TYPES.each {|y| y.capitalize! } ), { :prompt => "Select Type" }) %>

If you want to use type as select box in a Location form, you could put the possible types inside the Location class.

class Location < ActiveRecord::Base
  attr_accessible :type
  TYPES = ["Bar", "Restaurant"]
end

View

<%= f.select(:type, options_for_select(Location::TYPES.each {|y| y.capitalize! } ), { :prompt => "Select Type" }) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文