我将nicks 博客示例转换为 ndb 现在这条线失败了:
self.send_blob(file_info.blob, save_as=True)
出现此错误:
ValueError: Expected BlobInfo value for blob_key_or_info.
其余课程:
class FileDownloadHandler(blobstore_handlers.BlobstoreDownloadHandler):
def get(self, file_id):
file_info = models.FileInfo.get_by_id(long(file_id))
if not file_info or not file_info.blob:
self.error(404)
return
self.send_blob(file_info.blob)
#self.send_blob(file_info.blob, save_as=True)
为什么结果发生了变化?