gpt4 book ai didi

python - Google App Engine 递归 ndb.StructuredProperty

转载 作者:太空宇宙 更新时间:2023-11-03 15:21:08 25 4
gpt4 key购买 nike

我使用 Google App Engine 进行后端开发,并使用数据存储模型和 Google Cloud Storage 来存储图像对象。这是我的媒体模型

class Media(ndb.Model):

url = ndb.StringProperty(indexed=False) # url generated by images.get_serving_url
path = ndb.StringProperty(indexed=False) # path in GCP
width = ndb.IntegerProperty(indexed=False)
height = ndb.IntegerProperty(indexed=False)
size = ndb.IntegerProperty()
created = ndb.DateTimeProperty(auto_now_add=True)

现在我还想上传图像缩略图并将其存储在同一个实体中。所以我想要的是这样的

class Media(ndb.Model):
...

thumnail = ndb.LocalStructuredProperty(Media)

但是 Python 不允许我使用 self class 作为类属性的参数,并且 GAE 不允许模型名称作为 ndb.StructuredPropertymodelclass 参数。

我想知道,有什么方法可以避免这种限制,例如延迟初始化或类似的东西?

最佳答案

你可以这样做:

class Media(ndb.Model):
url = ndb.StringProperty(indexed=False)
path = ndb.StringProperty(indexed=False)
width = ndb.IntegerProperty(indexed=False)
height = ndb.IntegerProperty(indexed=False)
size = ndb.IntegerProperty()
created = ndb.DateTimeProperty(auto_now_add=True)

class Thumbnail(Media):
pass

class FullSize(Media):
thumbnail = ndb.LocalStructuredProperty(Thumbnail)

关于python - Google App Engine 递归 ndb.StructuredProperty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43543216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com