我正在阅读此页面上 NDB 数据存储的 GAE 文档。
https://developers.google.com/appengine/docs/python/ndb/overview#storing
在下面的代码中,
greeting = Greeting(parent=ndb.Key("Book", guestbook_name or "*notitle*"),
content = self.request.get('content'))
Greeting 有一个 Key 集作为它的父级。此外,该 Key 是由一个“Book”字符串构成的,它看起来只是一个随机字符串。
Key 类构造函数是否接受 kind 参数的随机字符串?
谢谢你。