在我的Google App Engine应用中,出现错误ImportError:没有名为main的模块转到URL时/foo。我的应用程序中的所有文件都位于父目录中。这是我的app.yaml:application: foobarversion: 1runtime: python27api_version: 1threadsafe: nohandlers:- url: /foo.* script: main.application- url: / static_files: index.html- url: /(.*\.(html|css|js|gif|jpg|png|ico)) static_files: \1 upload: .* expiration: "1d"这是我的main.py:from google.appengine.ext import webappfrom google.appengine.ext.webapp import utilclass Handler(webapp.RequestHandler): def get(self): self.response.headers['Content-Type'] = 'text/plain' self.response.write('Hello world!') def main(): application = webapp.WSGIApplication([('/foo', Handler)], debug=False) util.run_wsgi_app(application)if __name__ == '__main__': main()当我更改main.application为main.py或时,我会遇到相同的错误main。为什么会发生此错误?
添加回答
举报
0/150
提交
取消