谷歌应用引擎如果找不到图像设置默认图像

时间:2011-01-12 08:17:05

标签: google-app-engine

我按照谷歌应用引擎上的教程使用图片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等)?

1 个答案:

答案 0 :(得分:2)

self.redirect("path/to/static/image")