2

我刚刚在 Ubuntu 12.10 下使用 Eclipse 开始使用 GAE,当我尝试运行示例应用程序时,我遇到了一个我无法解决的错误:

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class MainPage(webapp.RequestHandler):

    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.out.write('Hello, webapp World!')

application = webapp.WSGIApplication([('/', MainPage)], debug=True)

def main():
    run_wsgi_app(application)

if __name__ == "__main__":
    main()

我收到了这个错误:

    Traceback (most recent call last):
  File "/home/mordrec/workspace/helloworld/helloworld.py", line 20, in <module>
    main()
  File "/home/mordrec/workspace/helloworld/helloworld.py", line 17, in main
    run_wsgi_app(application)
  File "/opt/google_appengine/google/appengine/ext/webapp/util.py", line 98, in run_wsgi_app
    run_bare_wsgi_app(add_wsgi_middleware(application))
  File "/opt/google_appengine/google/appengine/ext/webapp/util.py", line 116, in run_bare_wsgi_app
    result = application(env, _start_response)
  File "/opt/google_appengine/google/appengine/ext/webapp/_webapp25.py", line 688, in __call__
    match = regexp.match(request.path)
  File "/opt/google_appengine/lib/webob_1_1_1/webob/request.py", line 303, in path
    urllib.quote(self.path_info, PATH_SAFE))
  File "/opt/google_appengine/lib/webob_1_1_1/webob/descriptors.py", line 23, in fget
    return req.environ[key]
KeyError: 'PATH_INFO'
4

1 回答 1

4

一两个小时前,我遇到了完全相同的问题(但在 Mac 上)。以下说明中的步骤#5(“在本地部署”)对我有用。

您可以或多或少地遵循这些相同的说明来进行调试(只需执行“调试为”)。

http://www.mkyong.com/google-app-engine/google-app-engine-python-hello-world-example-using-eclipse/

要在本地运行它,右键单击 helloworld.py,选择“Run As” -> “Run Configuration”,新建一个“PyDev Google App Run”。

  1. 在 Main 选项卡 -> Main 模块中,手动键入“dev_appserver.py”的目录路径。“浏览”按钮无法帮助您,请手动输入。 在此处输入图像描述

  2. 在参数选项卡 -> 程序参数中,输入“${project_loc}/src”。 在此处输入图像描述

  3. 运行。默认情况下,它将部署到 localhost:8080。 在此处输入图像描述

  4. 完毕。 在此处输入图像描述

于 2013-02-09T00:54:16.140 回答