我是一名初學者,致力於RoR應用程序,該應用程序允許用戶通過經驗和教育更新他們的簡歷。我有兩個模型用於這些不同的項目,並希望按時間順序將它們一起顯示。我想知道如何在我的配置文件控制器和視圖中進行設置。將多個模型組合到1個視圖導軌中
我想採用這種相同的做法將應用程序的一個單獨的部分,將以相同的方式結合用戶的帖子和討論項目。但是,目前,我的重點是體驗和教育部分。
型材/ show.html.erb:
<% if @experiences.any? or @educations.any? %>
<div class="postExpOuter">
<% @experiences.each do |experience| %>
<div class="postExp">
<div>
<h2><%= experience.position %></h2>
<h3><%= experience.company %> | <%= experience.location %></h3>
<h4>
<%= experience.start_month %> <%= experience.start_year %>
<% if experience.end_year %>
<%= " - " + experience.end_month %> <%= experience.end_year %>
<% else %>
<span> - Present</span>
<% end %>
</h4>
</div>
</div>
<% end %>
<% @educations.each do |education| %>
<div class="postExp">
<div>
<h2><%= education.degree %></h2>
<h3><%= education.school %></h3>
<h4>
<% if education.end_year %>
<span>Class of </span><%= education.end_year %>
<% else %>
<%= education.start_year %><span> - Present</span>
<% end %>
</h4>
</div>
</div>
<% end %>
</div>
<% end %>
非常感謝!這工作得很好,但我如何將它正確地移動到配置文件控制器? – anater
到目前爲止我想通了。我發佈了答案。再次感謝您的幫助! – anater
沒問題。請標記答案是正確的;) – Hisako