내 Rails 3.2 앱에는 Profile
에 has_and_belongs_to_many :notes
연관이 있습니다. Note
에 '긴급'또는 '표준'유형이 있습니다. (Note
has_and_belongs_to_many :profiles
.)has_and_belongs_to_many 관계의 하위 집합을 얻는 방법
profile.urgent_notes
같은 일을 할 수 있도록하고 싶습니다
:
def urgent_notes
urgent_notes = Array.new
goals.each do |g|
if g.type == "urgent"
urgent_notes << g
end
end
urgent_notes
end
그래서 다른 연결을 추가하여이 작업을 수행 할 수있는 깨끗한 방법이? 아니면 범위와 같은 것이 가장 좋을까요?
충분합니다. 감사! – tvalent2