Tornado从入门到入门
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tornado从入门到入门相关的知识,希望对你有一定的参考价值。
遇到的问题:160129.debug设置为True 浏览器仍然无法更新修改
import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello8, !") self.render("home.html") settings = {‘debug‘ : True} if __name__ == "__main__": application = tornado.web.Application([ (r"/", MainHandler), ],**settings) application.listen(8888) tornado.ioloop.IOLoop.current().start()
以上是关于Tornado从入门到入门的主要内容,如果未能解决你的问题,请参考以下文章