0
class Supplier < User
include Mongoid::Document
embeds_many :images
accepts_nested_attributes_for :images
end
class Image
include Mongoid::Document
embedded_in :supplier
end
가 비어 있습니다 비어있는 ie ie
Image.count # gives 0
구현은 mongoid의 기본 동작입니다? 그것은 나에게 이해가되지 않는다. 필요한 경우 배열 필드를 만들 수있었습니다. 하지만 이드를 기반으로 이미지 레코드를 가져 오려고합니다. 'Image.find'는'Supplier.first.images.find'가 아닙니다. – Faizan
당신이 찾고있는 것은'embedds_many' 대신'has_many'입니다. – Kumar
사용할 수있는 마지막 옵션입니다. – Faizan