博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tornado 网页提交内容 展示内容作业
阅读量:5909 次
发布时间:2019-06-19

本文共 758 字,大约阅读时间需要 2 分钟。

s2.py

import tornado.ioloopimport tornado.webtext_list=[]class MainHandler(tornado.web.RequestHandler):    def get(self):        self.render('s2.html',xxoo=text_list)    def post(self, *args, **kwargs):        name= self.get_argument('tex')        text_list.append(name)        self.render('s2.html',xxoo=text_list)settings={    'template_path':'tpl',    'static_path': 'static',}application = tornado.web.Application([    (r"/index", MainHandler),],**settings)if __name__ == "__main__":    application.listen(8888)    tornado.ioloop.IOLoop.instance().start()

s2.html

    
Title

提交内容

展示内容

    {% for item in xxoo %}
  • {
    {item}}
  • {% end %}

 

转载于:https://www.cnblogs.com/koushuige/p/8298304.html

你可能感兴趣的文章
LVS+keepalived(DR)
查看>>
我的友情链接
查看>>
程序运行的原理
查看>>
我的友情链接
查看>>
java学习中static关键字,即静态的运用,及如何为代码写说明
查看>>
给Extjs2.x GridPanel添加goup系方法
查看>>
NFS搭建
查看>>
编写Shell脚本二
查看>>
epel
查看>>
HTML5 WebSocket 技术介绍
查看>>
文件下载
查看>>
Universal-USB-Installer、UItralSO、LinuxLive USB Creator U盘安装linux实战
查看>>
Windows Server 2016-Win Ser 2016新增功能
查看>>
Linux 下用户(andy)创建的文件可让特定用户(alice)修改
查看>>
关于Access数据库的一些看法
查看>>
mybatis-plus思维导图,让mybatis-plus不再难懂
查看>>
ES9-mapping参数
查看>>
python+selenium自动化测试(五)
查看>>
把spring-boot项目部署到tomcat容器中
查看>>
火雨_Nick
查看>>