在keys_with_ancestors示例之后,假设我们有相同的导入,并且已经MyParent
以相同的方式定义了类。
TL;DR 的答案本质上是传递parent=
给模型构造函数等同于创建一个键,None
并将其作为种类 ID 对列表中的最后一个 ID。例如,对于一个类MyModel
:
>>> parent = ndb.Key(MyModel, 1)
>>> child = MyModel(parent=parent)
>>> print child.key
ndb.Key('MyModel', 1, 'MyModel', None)
为了对示例执行此操作,我们可以简单地忽略id
:
class MyModel(EndpointsModel):
_parent = None
attr1 = ndb.StringProperty()
attr2 = ndb.StringProperty()
created = ndb.DateTimeProperty(auto_now_add=True)
并在设置器中简单地设置半生不熟的密钥,不要尝试从数据存储中检索(因为密钥不完整):
def ParentSet(self, value):
if not isinstance(value, basestring):
raise TypeError('Parent name must be a string.')
self._parent = value
if ndb.Key(MyParent, value).get() is None:
raise endpoints.NotFoundException('Parent %s does not exist.' % value)
self.key = ndb.Key(MyParent, self._parent, MyModel, None)
self._endpoints_query_info.ancestor = ndb.Key(MyParent, value)
同样,在 getter 中,您可以直接从键中检索父级(尽管这并不能保证只有一对作为父级):
@EndpointsAliasProperty(setter=ParentSet, required=True)
def parent(self):
if self._parent is None and self.key is not None:
self._parent = self.key.parent().string_id()
return self._parent
完成此操作后,您无需更改任何 API 代码,示例将按预期工作。