我按照谷歌应用引擎上的教程使用图片python API http://code.google.com/appengine/docs/python/images/usingimages.html,我的问题是如何修改代码
if greeting.avatar:
self.response.headers['Content-Type'] = "image/png"
self.response.out.write(greeting.avatar)
else:
self.error(404)
而不是显示错误,如何显示默认图像(静态jpeg等)?
答案 0 :(得分:2)
self.redirect("path/to/static/image")