我一直在尝试在 appengine 上做一个简单的 webapp,但我遇到了处理程序的问题。这是我的代码:
我的app.yaml文件:
application: test-app
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /web/.*
script: AppWebInterface.application
我的AppWebInterface.py文件:
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, World!')
application = webapp2.WSGIApplication([
('/', MainPage),
], debug=True)
当我运行 dev_server 并访问 localhost:8080/web 时,我收到此错误:
The url "/web" does not match any handlers.