我是一名新手,正在开发一个RoR应用程序,该应用程序允许用户在简历中添加经验和教育背景。我为这些不同的项目有两个模型,我想按时间顺序把它们放在一起展示。我想知道如何在我的配置文件控制器和视图中设置这个
我想在应用程序的一个单独部分采用同样的做法,以同样的方式组合来自用户的帖子和讨论项。然而,目前我的重点是经验和教育部分。
概要/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 %>
刚刚破解了我的浏览器,不知道是否能直接工作:
<%- (@experiences.to_a + @educations.to_a).sort_by(&:end_year).each do |item| -%>
<%- if item.is_a? Experience -%>
your markup here...
<%- else -%>
your other markup here...
<%- end -%>
<%- end -%>
没有写过ERB自从…嗯,长。基本上它只是以下:合并2 ActiveRecord-Relations作为数组到一个大数组,排序它们的时间戳记你想要的(你可以添加.reverse
在最后,如果你想)。在遍历列表时,检查对象的类型。
profiles_controller.rb:
class ProfilesController < ApplicationController
def show
@user = User.find_by_profile_name(params[:id])
if @user
@posts = @user.posts.all(:order => "created_at DESC", :limit => 3)
@experiences = @user.experiences.all(:order => "start_year DESC")
@educations = @user.educations.all(:order => "start_year DESC")
@items = (@experiences.to_a + @educations.to_a).sort_by(&:start_year).reverse[0,3]
render action: :show
else
render file: 'public/404', status: 404, formats: [:html]
end
end
end
概要/show.html.erb:
<% if @items.any? %>
<div class="postExpOuter">
<% @items.each do |item| %>
<% if item.is_a? Experience %>
<div class="postExp">
<div>
<h2><%= item.position %></h2>
<h3><%= item.company %> | <%= item.location %></h3>
<h4>
<%= item.start_month %> <%= item.start_year %>
<% if item.end_year %>
<%= " - " + item.end_month %> <%= item.end_year %>
<% else %>
<span> - Present</span>
<% end %>
</h4>
</div>
</div>
<%- else -%>
<div class="postExp">
<div>
<h2><%= item.degree %></h2>
<h3><%= item.school %></h3>
<h4>
<% if item.end_year %>
<span>Class of </span><%= item.end_year %>
<% else %>
<%= item.start_year %><span> - Present</span>
<% end %>
</h4>
</div>
</div>
<% end %>
<% end %>
</div>
<% end %>