關於後端渲染html頁面給遊覽器
阿新 • • 發佈:2019-01-06
class IndexHandler(tornado.web.RequestHandler):
def get(self):
self.render('index.html')
if __name__ == '__main__':
tornado.options.parse_command_line()
app = tornado.web.Application(
handlers=[(r'/', IndexHandler), (r'/poem', PoemPageHandler)],
template_path=os.path.join(os.path.dirname(__file__ ), "templates")
)
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
#template其實是以下方式
#因此並沒有實現前後端分離
>>> from tornado.template import Template
>>> content = Template("<html><body><h1>{{ header }}</h1></body></html>" )
>> print content.generate(header="Welcome!")
<html><body><h1>Welcome!</h1></body></html>