webapp2.Route无法找到static_dir文件

时间:2015-05-05 22:43:04

标签: python google-app-engine webapp2

的app.yaml

handlers:
- url: /stylesheets
  static_dir: stylesheets
- url: /.*
  script: myapp.application

myapp.py

class DeleteRecord(BaseHandler):
  def get(self, record_id):
    # do something

application = webapp2.WSGIApplication([
  ('/', MainPage),
  ('/home', HomePage),
  ('/error_message', ErrorMessage),
  webapp2.Route(r'/delete_record/<record_id>', DeleteRecord),
  ('/sign_out', SignOut),

当&#34; / delete_record / record_id&#34;被称为,代码执行良好,但它无法读取保存在&#34; / stylesheets&#34; (=网页上的css图像损坏)。

需要修复什么?谢谢:))

0 个答案:

没有答案