标签:style blog http io ar color os sp 文件
代码执行过程及分析:
1 app = tornado.web.Application( 2 handlers=[(r‘/‘, IndexHandler)], 3 template_path=os.path.join(os.path.dirname(__file__), "templates"), 4 static_path=os.path.join(os.path.dirname(__file__), "static"), 5 debug=True 6 )
1 if self.settings.get(‘debug‘): 2 self.settings.setdefault(‘autoreload‘, True) 3 self.settings.setdefault(‘compiled_template_cache‘, False) 4 self.settings.setdefault(‘static_hash_cache‘, False) 5 self.settings.setdefault(‘serve_traceback‘, True)
由于传入的debug值为True,将依次执行self.settings.get(‘debug‘)函数语句,此时设置‘autoreload‘的值为True, ‘compiled_template_cache‘的值为False, ‘static_hash_cache‘的值为False, ‘serve_traceback‘的值为True.
1 # Automatically reload modified modules 2 if self.settings.get(‘autoreload‘): 3 from tornado import autoreload 4 autoreload.start()
此时服务器尝试重新启动
4.
综上而言,在对Application类实例化的时候,传入"debug=True"参数将实现代码的动态解释,每次当.py文件内容改变时,Tornado都是自动重启服务器,而我们刷新页面后也能看到新的调试效果,无需自己频繁地开启服务器。
资料参考:http://www.tornadoweb.org/en/stable/web.html#tornado.web.Application
Application类如何通过debug参数实现auto-reload功能
标签:style blog http io ar color os sp 文件
原文地址:http://www.cnblogs.com/Rigel-sysu/p/4108209.html