自分の index.html ファイルを Tornado で処理するためのより良い方法があるかどうかを知りたいです。
すべてのリクエストに StaticFileHandler を使用し、特定の MainHandler を使用してメインのリクエストを処理します。StaticFileHandler のみを使用すると、403: Forbidden エラーが発生しました
GET http://localhost:9000/
WARNING:root:403 GET / (127.0.0.1): is not a file
ここで私が今やっている方法:
import os
import tornado.ioloop
import tornado.web
from tornado import web
__author__ = 'gvincent'
root = os.path.dirname(__file__)
port = 9999
class MainHandler(tornado.web.RequestHandler):
def get(self):
try:
with open(os.path.join(root, 'index.html')) as f:
self.write(f.read())
except IOError as e:
self.write("404: Not Found")
application = tornado.web.Application([
(r"/", MainHandler),
(r"/(.*)", web.StaticFileHandler, dict(path=root)),
])
if __name__ == '__main__':
application.listen(port)
tornado.ioloop.IOLoop.instance().start()