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.
假设我有一些清单和一些任务。每个列表可以有很多任务,一个任务属于一个列表。当我编辑其中一个任务栏时,在输入字段中显示相应列表的 ID。
如何显示列表的标题而不是 id?
您可能想select在表单代码中使用与此类似的输入:
select
<%= f.select :list_id, List.all.collect { |l| [l.name, l.id] } %>
这将显示nameeach List,但实际上会将 分配id给任务的list_id
name
List
id
list_id