我正在尝试构建一个简单的 GAE 应用程序,并希望将不同的部分存储在不同的 python 文件中。例如,我想要一个 URI,如:
xxx/appspot.com/books/book/42
我的 app.yaml
application: bookshop
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /books/*
script: books.app
- url: .*
script: main.application
libraries:
- name: webapp2
version: "2.5.2"
我的 books.py 文件:
import webapp2
class BookHandler(webapp2.RequestHandler):
def get(self):
self.response.write('BookHandler')
app = webapp2.WSGIApplication([
('/.*/book', BookHandler)
], debug=True)
当我尝试 URI 时,我得到一个空白屏幕而不是消息 BookHandler。任何人都可以帮忙吗?