Tornado 5.1渲染模板:
import os.pathimport tornado.httpserverimport tornado.ioloopimport tornado.optionsimport tornado.webfrom tornado.options import define, optionsdefine("port", default=8888, help="run on the given port", type=int)class MainHandler(tornado.web.RequestHandler): def get(self): #self.write("Hello, world") self.render( template_name = "index.html", title = "Home Page", header="Books that are great", books=[ "Learning Python", "Programming Collective Intelligence", "Restful Web Services" ] )def main(): tornado.options.parse_command_line() application = tornado.web.Application([ (r"/", MainHandler), ], template_path = os.path.join(os.path.dirname(__file__), "templates"), static_path = os.path.join(os.path.dirname(__file__), "static"), debug = True ) http_server = tornado.httpserver.HTTPServer(application) http_server.listen(options.port) tornado.ioloop.IOLoop.current().start()if __name__ == "__main__": main()
编写模板文件index.html放到同级的templates目录下:
{ { title }} { { header }}
- {% for book in books %}
- { { book }} {% end %}
在浏览器下输入:http://127.0.0.1:8888/ 或者 http://192.168.1.119:8888/ (192.168.1.119为本机ip):