我有一个由 aString
和 a组成的实体BlobReferenceProperty
:
class NameKeyPair(db.Model):
human_readable_name = db.StringProperty()
blobkey = blobstore.BlobReferenceProperty()
当我在 blob 中保存一些文本时,我将 blobkey 设置为:
...
#Create the file
file_name = files.blobstore.create(mime_type='text/plain')
#Open the file and write to it
with files.open(file_name, 'a') as f:
f.write(data.encode('utf8'))
#Finalize the file
files.finalize(file_name)
#Get the file's blob key
blobkey = files.blobstore.get_blob_key(file_name)
#store it in DB
nameKeyPair = NameKeyPair()
nameKeyPair.blobkey = blobkey
nameKeyPair.human_readable_name = human_readable_name
nameKeyPair.put()
...
这human_readable_name
是我发送给用户的字符串。现在,当用户将名称发回给我时,我想返回 blob 的文本:
...
human_readable_name = self.request.get('human_readable_name')
q = NameKeyPair.all()
q.filter("human_readable_name =", human_readable_name)
blobkey = ""
for p in q.run(limit=1):
blobkey = p.blobkey
blob_info = blobstore.BlobInfo.get(blobkey)
self.send_blob(blob_info)
这行不通。Appspot 只是说“服务器错误”。
如果我打印出我的变量blobkey
,它会说它<google.appengine.ext.blobstore.blobstore.BlobInfo object at 0x54dbe8bfa91b53a0>
不应该是一个 blobkey 吗?
此页面:https ://developers.google.com/appengine/docs/python/blobstore/blobkeyclass说“您可以通过将密钥传递给 BlobInfo.get() 类方法来获取带有 BlobKey 的 BlobInfo 实体。”
这就是为什么我将我的 blobkey 传递给BlobInfo.get
. 但如果我的“blobkey”实际上已经是一个BlobInfo
对象,也许我不需要这样做。我尝试将其直接传递给send_blob
:
self.send_blob(blobkey)
但我得到相同的结果。
并基于此页面:https ://developers.google.com/appengine/docs/python/blobstore/显示代码示例:self.send_blob(blob_info)
这似乎应该是我所需要的......但它只是不起作用。有任何想法吗?