web-dev-qa-db-ja.com

静的パスとは異なるディレクトリから静的ファイルを提供する方法は?

私はこれを試しています:

favicon_path = '/path/to/favicon.ico'

settings = {'debug': True, 
            'static_path': os.path.join(PATH, 'static')}

handlers = [(r'/', WebHandler),
            (r'/favicon.ico', tornado.web.StaticFileHandler, {'path': favicon_path})]

application = tornado.web.Application(handlers, **settings)
application.listen(port)
tornado.ioloop.IOLoop.instance().start()

ただし、static_pathにあるfavicon.icoを提供し続けます(上記のように、2つの異なるパスに2つの異なるfavicon.icoがありますが、static_path)。

31
shino

削除 static_path アプリの設定から。

次に、ハンドラーを次のように設定します。

handlers = [
            (r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': favicon_path_dir}),
            (r'/static/(.*)', tornado.web.StaticFileHandler, {'path': static_path_dir}),
            (r'/', WebHandler)
]
50
Not_a_Golfer

Favicon.icoを括弧で囲み、正規表現でピリオドをエスケープする必要があります。あなたのコードは

favicon_path = '/path/to/favicon.ico' # Actually the directory containing the favicon.ico file

settings = {
    'debug': True, 
    'static_path': os.path.join(PATH, 'static')}

handlers = [
    (r'/', WebHandler),
    (r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': favicon_path})]

application = tornado.web.Application(handlers, **settings)
application.listen(port)
tornado.ioloop.IOLoop.instance().start()
6
user1876508

それを行うには2つの方法があります。

1.設定でstatic_url_prefixを使用します。

例えば.

settings = dict(
    static_path=os.path.join(os.path.dirname(__file__), 'static'),
    static_url_prefix="/adtrpt/static/",
)

2.カスタムハンドラーを使用する

カスタムハンドラーをハンドラーに追加する

handlers.append((r"/adtrpt/static/(.*)", MyStaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), 'static')}))

次に、カスタムメソッドを実装します。

class StaticHandler(BaseHandler):
    def get(self):
        path = self.request.path
        print(path)
        self.redirect(BASE_URI + path)
0
Jason Yu