私はcouchdbkitでこれをたくさん実行しました。couchdbkit Documentオブジェクトの下の子オブジェクトに親に戻って参照することはできません。私はしかし、私は間違っている願っています。今、私がやっているものをcouchdbkitで親オブジェクトをルックアップする方法はありますか?
class Child(DocumentSchema):
name = StringProperty()
def parent(self):
# How do I get a reference to the parent object here?
if self.parent.something:
print 'yes'
else:
print 'no'
class Parent(Document):
something = BooleanProperty()
children = SchemaListProperty(Child)
doc = Parent.get('someid')
for c in doc.children:
c.parent()
は、親オブジェクトの周りに渡すことですが、私はこのアプローチを好みません。