摘要: ```python import tornado.web import tornado.ioloop class IndexHandler(tornado.web.RequestHandler): """请求处理类""" def get(self): self.write("hello tornado") if __name__ == '__main__': app = tornado.web.A 阅读全文
posted @ 2019-11-20 16:46 太虚真人 阅读(166) 评论(0) 推荐(0) 编辑