開啟除錯模式需要 import 一個模組即可,import tornado.autoreload將修改的檔案上傳之後,不需要再重啟,修改的結果就會顯示出來了,另外也可以在 settings 加入 debug選項:import tornado.httpserverimport tornado.ioloopimport tornado.optionsimport tornado.websettings = {"debug" : True}define("debug",default=True,help="Debug Mode",type=bool)def main(): tornado.options.parse_command_line() application = tornado.web.Application([ (r"/", MainHandler), (r"/nowamagic/", NowaMagicHandler), ],**settings) http_server = tornado.httpserver.HTTPServer(application) http_server.listen(options.port) tornado.ioloop.IOLoop.instance().start().
開啟除錯模式需要 import 一個模組即可,import tornado.autoreload將修改的檔案上傳之後,不需要再重啟,修改的結果就會顯示出來了,另外也可以在 settings 加入 debug選項:import tornado.httpserverimport tornado.ioloopimport tornado.optionsimport tornado.websettings = {"debug" : True}define("debug",default=True,help="Debug Mode",type=bool)def main(): tornado.options.parse_command_line() application = tornado.web.Application([ (r"/", MainHandler), (r"/nowamagic/", NowaMagicHandler), ],**settings) http_server = tornado.httpserver.HTTPServer(application) http_server.listen(options.port) tornado.ioloop.IOLoop.instance().start().