0
以下のスニペットでは、ビューで多くのデータベース操作を行っています。 (.whereと2つの各ループ)。このコードをビューからリファクタリングする最良の方法は何ですか?ビューでRefactoring rails3ビューactiverecordコール
:index.html.erb
<%- @lesson.sections.each do |section| -%>
<%- section_correlations = section.correlations.where(:grade => 4) %>
<%- unless section_correlations.blank? -%>
<h3><%= section.full_title %></h3>
<%- section_correlations.each do |correlation| -%>
<%= correlation.description %>
<%- end -%>
<%- end -%>
<%- end -%>