我有3个班级——米奇、米奇特和西尔。
class Mix
include DataMapper::Resource
property :id, Serial
# <removed other code for brevity>
has n, :mix_clips
has n, :clips, :through => :mix_clips
end
class MixClip
include DataMapper::Resource
property :id, Serial
property :order, Integer
belongs_to :mix
belongs_to :clip
end
class Clip
include DataMapper::Resource
property :id, Serial
property :title, String
property :description, Text
has n, :mix_clips
has n, :mixes, :through => :mix_clips
end
混杂货单与混合/单单表合并,包括外壳描述(顺序)。 我愿知道,在装满时,是否能够提一下目前的情况。
因此,我要说的是,我装上了一枚混合物和一只类似弹片:
mix = Mix.first
clip = mix.clips.first
是否有办法使“混合委员会”与这一具体的Clip有关?
clip.mix_clip.order
它通过坐在桌旁,因此我认为有办法这样做。
我知道,我只能拿到所有混合体、混合体、双壳和钻探,但我很想知道,我是否能够回头,......会比较简单。
对于那些想不到这一点的人来说,Im试图利用这一方法,因为旋转翼者在返回json/xml时确实全力支持被nes住的协会,而我也希望能够仅仅确定一种恢复数据的方法。
感谢。