我想将记录(标题)从一个索引页显示到另一个索引页,为此我这样做
在 index.haml 中:-
-if @individual.important_event.present?
-@individual.important_event.each do |event|
%p
= link_to event.title, important_events_path
在个人.rb 中:-
has_many :important_event
在important_event.rb中:-
belongs_to :individual
但它不起作用。它给出了错误“#<ImportantEvent:0xbb729c8> 的未定义方法‘每个’”