0

为了获取 500 错误,我使用 webapp2 显示自定义错误页面:http ://webapp-improved.appspot.com/guide/exceptions.html#exceptions-in-the-wsgi-app 。

发生错误时始终显示此页面。即使存在 over_quota 错误并且 app.yaml 已正确配置。

如何显示 Quota_over Error 的自定义页面?

在 app.yaml 中:-

error_handlers:
  - error_code: over_quota
    file: over_quota.html
4

1 回答 1

0

App Engine 中配额超过的代码是 503。因此,您可以创建一个专门处理 503 错误代码的处理程序。

于 2012-10-20T07:05:21.273 回答