在 Rails 应用程序的数据库中存储多选
我有一个“位置”模型,其中包含标题、描述和类型。类型可以是“酒吧”、“餐厅”等。我希望在我的视图中有一个选择框,其中包含具有多个可用选项的各种选项。
我将如何解析控制器中的选择框并将其存储在数据库中?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在位置表单中使用类型作为选择框,您可以将可能的类型放入位置类中。
看法
If you want to use type as select box in a Location form, you could put the possible types inside the Location class.
View