構造化されたプロパティを持つメイン プロパティがあります。構造化プロパティ内に定義されたプロパティがあり、親プロパティの値にアクセスする必要があります。私が試した構文は でしself.key.parent().email
たが、うまくいきませんでした。これどうやってするの?
class Individual(ndb.Expando):
name = ndb.StringProperty()
email = ndb.StringProperty()
team_list = ndb.StructuredProperty(IndividualTeam, repeated=True)
class IndividualTeam(ndb.Model):
team_key = ndb.KeyProperty()
fundraise_amt = DecimalProperty()
@property
def donation_total(self):
#This is my problem here
return self.key.parent().email