gpt4 book ai didi

python - GAE + NDB + Blobstore + Google 高性能图像服务

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

我正在制作一个应用程序来上传文本和图像。我已经阅读了很多关于 blobstore 和 Google 高性能图像服务的文章,最后我找到了一种将它们一起实现的方法。

我想知道的是,是否一切都做得很好,或者可以用更好的方式来做,以及是否最好将 serving_url 保存在模型中,或者每次我想打印图像时都必须计算页面。

只有一个用户和一张图片。

这是代码(总结一下,忘掉我的 custom.PageHandler,它只具有轻松呈现页面的功能,以及检查表单值的内容等):

class User(ndb.Model):
""" A User """
username = ndb.StringProperty(required=True)
password = ndb.StringProperty(required=True)
email = ndb.StringProperty(required=True)

class Picture(ndb.Model):
""" All pictures that a User has uploaded """
title = ndb.StringProperty(required=True)
description = ndb.StringProperty(required=True)
blobKey = ndb.BlobKeyProperty(required=True)
servingUrl = ndb.StringProperty()
created = ndb.DateTimeProperty(auto_now_add=True)
user = ndb.KeyProperty(kind=User)

# This class shows the user pics
class List(custom.PageHandler):
def get(self):
# Get the actual user pics
pics = Picture.by_user(self.user.key)
for pic in pics:
pic.servingUrl = images.get_serving_url(pic.blobKey, size=90, crop=True)
self.render_page("myPictures.htm", data=pics)

# Get and post for the send page
class Send(custom.PageHandler, blobstore_handlers.BlobstoreUploadHandler):
def get(self):
uploadUrl = blobstore.create_upload_url('/addPic')
self.render_page("addPicture.htm", form_action=uploadUrl)

def post(self):
# Create a dictionary with the values, we will need in case of error
templateValues = self.template_from_request()
# Test if all data form is valid
testErrors = check_fields(self)

if testErrors[0]:
# No errors, save the object
try:
# Get the file and upload it
uploadFiles = self.get_uploads('picture')
# Get the key returned from blobstore, for the first element
blobInfo = uploadFiles[0]
# Add the key to the template
templateValues['blobKey'] = blobInfo.key()

# Save all
pic = Picture.save(self.user.key, **templateValues)
if pic is None:
logging.error('Picture save error.')

self.redirect("/myPics")

except:
self.render_page("customMessage.htm", custom_msg=_("Problems while uploading the picture."))
else:
# Errors, render the page again, with the values, and showing the errors
templateValues = custom.prepare_errors(templateValues, testErrors[1])
# The session for upload a file must be new every reload page
templateValues['form_action'] = blobstore.create_upload_url('/addPic')

self.render_page("addPicture.htm", **templateValues)

基本上,我列出了所有的图片,用这一行在 jinja2 模板中显示图像:

{% for line in data %}
<tr>
<td class="col-center-data"><img src="{{ line.servingUrl }}"></td>

所以在 List 类中,我计算每个服务 url 并将其临时添加到模型中。我不知道直接保存在模型中是否会好,因为我不知道 url 是否可以随时间变化。图片的 url 会是永久的吗?在那种情况下,我可以保存它而不是计算,对吗?

Send 类仅显示一个用于上传图像并将数据保存到模型的表单。在重新呈现页面的情况下,我总是生成一个新的 form_action 链接,因为文档讨论了它。对吗?

代码可以运行,但我想知道哪种方法在性能和资源节省方面更好。

最佳答案

你是对的。您确实希望保存 get_serving_url() 而不是重复调用它。它保持不变。

请注意,当您完成 url 时,会有一个 delete_serving_url(),就像您删除 blob 时一样。

关于python - GAE + NDB + Blobstore + Google 高性能图像服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17450901/

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