龙卷风不显示静态文件

时间:2018-11-05 09:25:29

标签: python tornado

我将在Tornado中提供静态文件。以下是我的项目的路径:

项目/

   /app/app.py

   /static/css/<css files>

   /static/html/ <html files>

app.py:

def make_app():
    settings = {"static_path": os.path.join(os.path.dirname(__file__), "../static")}
    return tornado.web.Application([
        # (r"/", MainHandler),
        (r"/user/authenticate", AuthenticateHandler),
        (r"/user/getToken", TokenHandler),
        (r"/login", LoginPageHandler),
        (r"/(.*)", tornado.web.StaticFileHandler, {"path": html_root, "default_filename": "index.html"}),
        (r"/(.css)", tornado.web.StaticFileHandler,   dict(path=settings['static_path']))
    ])


if __name__ == "__main__":
    app = make_app()
    app.listen(8888)
    tornado.ioloop.IOLoop.current().start()

每当我寻找http://localhost:8888/somefile.min.css时,它都会返回404

1 个答案:

答案 0 :(得分:1)

    (r"/(.*)", tornado.web.StaticFileHandler, {"path": html_root, "default_filename": "index.html"}),

此正则表达式将匹配包括CSS文件在内的所有内容。因此,切换最后两个条目,它应该可以工作。包罗万象的正则表达式通常最好放在最后,因为包罗万象。