나는 그런 루비 온 레일즈 내 MySQL 데이터베이스에서 데이터를 점점 오전 :레일 - 알파벳순 시스템을 만드는 방법?
def all_specs
Specialization.order("title ASC").all;
end
을 지금, 나는 그런보기 파일이 데이터 정렬 싶습니다
<div class="nav-column">
<h3>A</h3>
<ul class="submenu">
<li><a href="#">All data that has title that starts with A</a></li>
</ul>
</div>
<div class="nav-column">
<h3>A</h3>
<ul class="submenu">
<li><a href="#">All data that has title that starts with B</a></li>
</ul>
</div>
and so on from A-Z
을 어떻게 할 수 달성 해? 당신은 그룹에 데이터를 수
큰 사고 : 다음은 구현 및 모두를위한 해시 반복입니다! :) – Zippie