本文介绍了预期的 BlobKey 但我得到一个 BlobInfo 对象 - 如何从 BlobInfo 对象获取 BlobKey?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从 BlobInfo 对象获取 BlobKey 的最佳方法是什么?
What's the best way to get a BlobKey from a BlobInfo object?
def get(self):
blobs = BlobInfo.all()
#something is missing here
for blob in blobs:
if not Content.query().filter(ndb.BlobKeyProperty("blobKey") == blob.key).count(1): #ERROR
blob.delete() ^
**how do you do make this a normal BlobKey?**
#Error
BadValueError: Expected BlobKey, got <bound method BlobInfo.key of
<google.appengine.ext.blobstore.blobstore.BlobInfo object at 0x048B87D0>>
谢谢!!
推荐答案
BlobInfo.key 是一个方法,而不是一个属性,所以叫它:blob.key()
BlobInfo.key is a method, not a property, so call it: blob.key()
这篇关于预期的 BlobKey 但我得到一个 BlobInfo 对象 - 如何从 BlobInfo 对象获取 BlobKey?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!