class User(UserMixin, ndb.Model):
email = ndb.StringProperty(required = True)
password_hash = ndb.TextProperty(required = True)
class Record(ndb.Model):
user = ndb.KeyProperty(kind=User)
notes = ndb.TextProperty()
在 Django 中,我相信经典的 GAE-db 也可以像这样查询属于用户的记录:
user = "get user instance"
user.record_set.all()
但在 ndb 中,这种方法会引发错误。 文档没有说明这一点。
知道我将如何实现这一目标吗?谢谢