Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Ruby on Rails 中需要一个带有下拉功能的菜单栏。几乎所有东西都是静态的,除了一个。在那里我需要显示用户输入的所有类别。
我需要为此使用 Gem 或 Twitter Bootstrap 还是可以使用表单助手来完成?
罗洛夫
你的意思是这样的? 假设user.categories存在,并且category模型有一个description属性。
user.categories
category
description
<ul> <% user.categories.each do |cat| %> <li><%= cat.description %></li> <% end %> </ul>
这将根据用户的每个类别创建列表项。