嗨,我正在建設一個網站。 這裏的要求是要建立像無法重定向到特定的網址
http://localhost:10080/edit/?d=2014-02-22%2015:36:38.688000
一個URL,它必須處理BU應用
application = webapp2.WSGIApplication([
('/edit',EditPost),
('/',HomePage),
('/post',PostPosting),
], debug=True)
我使用以上,但其不承認EditPost類
我的app.yaml是
application: your-app-id-indoor
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /.*
script: IndoorBlog.application
- url: /stylesheets
static_dir: stylesheets
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
---有人可以幫我...
感謝