모듈: Mongoid::Association::Referenced::HasOne::Buildable
- 다음에 정의됨:
- lib/mongoid/association/referenced/has_one/buildable.rb
개요
has_one 연관 관계에 대한 빌더 동작.
인스턴스 메서드 요약 접기
-
#build(base, object, type = nil,selected_fields = nil) ⇒ 문서
이 메서드는 _id 또는 객체를 가져와서 ID 를 사용하여 역방향을 쿼리하거나 연결된 객체를 지운 후 객체를 설정합니다.
인스턴스 메서드 세부 정보
#빌드(base, 객체, type = nil,selected_fields = nil) ⇒ 문서
이 메서드는 _id 또는 객체를 가져와서 ID 를 사용하여 역방향을 쿼리하거나 연결된 객체를 지운 후 객체를 설정합니다.
22 23 24 25 26 27 28 29 30 31 |
# 파일 'lib/mongoid/association/referenced/has_one/buildable.rb', 줄 22 def 빌드(base, 객체, 유형 = nil, selected_fields = nil) 만약 쿼리?(객체) 만약 !base.new_record? execution_query(객체, base) end other clear_related(객체) 객체 end end |